I've got a PHP form that stores information in a SQL Server database, using SQLTEXT to bind. The content is correctly stored in the database, but when I try to retrieve the information to display a printable copy of the submitted information back to the user I get an error using SQLTEXT. Instead of using that data type I've used SQLVARCHAR, but I'm only getting a 241 characters back.
To retrieve the content I'm binding using: mssql_bind($statement, "@SPVaraible", $exportvariable, SQLVARCHAR, TRUE);
Is there something I'm missing?