Hello, I am retrieving TEXT field using PHP4 on Windows NT / Apache from a MSSQL server. The text is long and the result is not complete. What can I do? Thanks in advance for any help.
Exactly how long? mssql has text size limitations...you need to use special functions to get it correctly sometimes.
Thanks for your answer. In the mean time, I have found the answer to my problem on php.net. Adding the following in php.ini solved the problem. mssql.textsize = 8192 ; mssql.textlimit = 8192 ;