Morning,
I have a field in my SQL database varchar 8000 for a text field. When I display it on the edit form only 255 char show up even though there are more than that in the database field and running the backend query shows the correct information.
Is there a way I can make it show all and not just the default 255 chars? Below is a snippet of the code:
/* construct and run our query */
$result = mssql_query("select * from dbo.vwIncidentReport where IncidentID = '$IncidentID'");
$myrow = mssql_fetch_array($result);
Details of Investigation:<textarea name="DetailsOfInvestigation" cols="60" rows="12"><?echo $myrow["DetailsOfInvestigation"] ; ?></textarea>
Any thoughts would be most welcome. Thanks.
Laura