I've got an SQL DB. One field for a peticular record has about 10,000 characters in it. When I run a select query as shown here
I'm only getting about the first 4,000 characters in the field. Anyone know of a limitation that would be preventing me from returning the entire field?
Thanks in advance.
Code:
$query = "SELECT * FROM tblSafetyContent WHERE ContentID = 2";
$subresult = @mssql_query ($query);
if ($subresult) {
while ($row = mssql_fetch_array($subresult, MSSQL_ASSOC)) {
echo $row['Content'];
}
}
Thanks in advance.