Hello from Belgium,
I have a problem while querying a mssql database.
I perform a normal select on the DB, and fields containing more than 250 chars are truncated to 250 (I think it is 250?).
In the DB, the filds concerned are varchar(2000).
Is there a way to obtain the whole record?
Part of code is pasted below...
Thank's in advance,
Nicolas
// query
$sql = "select * from ViewCR order by Identifier desc";
// run the query
$req = mssql_query($sql);
while($data = mssql_fetch_array($req))
// Print-out
{
echo '<td width="250">'.$data['Identifier'].'</td><td width="450"><p align=justify>'.$data['Title'].'</p></td></tr><tr>';
echo '<td width="250"></td><td width="450"><p align=justify></p></td></tr><tr>';
}