Date: 10/23/01
- Next message: robert.w <email protected>: "[PHP-DOC] Bug #13802 Updated: Typo in require() statement description ?"
- Previous message: Franco Breciano: "[PHP-DOC] Re: get ya some! FREE 18921"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
\
I'm using php to retrieve a Query from a SQLServer 7.0 database.
My code is this one:
$base = mssql_select_db($db,$conexion);
$sql="SELECT MarcasSolicitante FROM Marcas";
$result = mssql_query($sql,$conexion);
while ($myrow = mssql_fetch_array($result))
{
$mensaje= $myrow["MarcasSolicitante"];
?>
<p><strong><font size="4"><u>Mensaje:</u></strong>    </u> <font
size="3"><?echo $mensaje;?> </font></a></P>
<hr>
<....>
<....>
The problem is that the field MarcasSolicitante in the database is
VarChar(7000), and php receives a Char(255), what I'm I doing wrong? Isi
there any parameter I can modify in order to retrieve correctly the fields??
Thanks in advance
- Next message: robert.w <email protected>: "[PHP-DOC] Bug #13802 Updated: Typo in require() statement description ?"
- Previous message: Franco Breciano: "[PHP-DOC] Re: get ya some! FREE 18921"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

