Hi.
Trough a connection with SQLserver database, i use a select query to get a string that is quite large (500).
The problem is that when i try to display what i get, it only see 254 characters.
here is a simplified version of the code:
<?
mssql_connect ("NIAGARA", "sav", "sav"); //I open the connection
mssql_select_db ("articles"); //I select the database
$tout=mssql_query ("select * from Produits"); // I execute the sql query to get one complete row
$qant=mssql_fetch_array ($tout); // I store this row in an array
echo "texte:$qant[10]"; //I display the last column of the array, where the string I want to get is
?>