Hi all
Hope you can help with this. I've got a query that pulls comments out of my database, but it seems to be truncating them. My query is :
$query2 = " select * from database where cono='01' and deleted='0' and account='123456' ";
$dbResult2 = mssql_query($query2, $dbLink2);
for($count=1; $row = mssql_fetch_array($dbResult2); ++$count)
{
print("<TR CLASS=HEADER-DARK ALIGN=CENTER VALIGN=MIDDLE><TD>$count</TD>");
print("<TD>$row[1]<BR><A HREF='$page?idx=$row[34]'>$row[2]</A></TD>");
print("<TD>$row[8] $row[33]<BR>$row[9] $row[10]<BR>$row[11] $row[12]<BR>$row[13] $row[22]<BR>$row[14]</TD>");
print("<TD>$row[7]<BR>$row[6]<BR>$row[19]</TD>");
print("<TD>$row[3]</TD>");
print("<TD>$row[15]</TD>");
print("<TD>$row[4]</TD>");
print("<TD>$row[18]</FONT></TD>");
print("<TD>$row[21]<BR>$row[20]</FONT></TD></TR>");
}
When it pulls the comments out, it is only pulling the first 255 characters. Any ideas why and how I can get it to pull everything out?
Many thanks in advance guys!
Cheers
J