[PHP] a

2001-10-23 Thread Franco Breciano

a



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] aaaaaaaaaaaaaaa

2001-10-23 Thread Franco Breciano

a



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] MSSQL 7.0 and PHP

2001-10-23 Thread Franco Breciano

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];

   ?
pstrongfont size=4uMensaje:/u/strong nbsp nbsp/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



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]