read textfield from MS SQL to PHP

read textfield from MS SQL to PHP

am 08.04.2006 10:35:53 von Mark Knochen

hallo,

i write with PHP a long text in a MSSQL Database.

Next I want to readout this text with PHP:

$output = mssql_query("SELECT * FROM $table WHERE ID = '$row[moduleID]'");

$row_output = mssql_fetch_array($output);

echo $row_output[text];

But i get only ca. 3800 chars from the textfield ...

mssql.textlimit
mssql.textsize

are with ini_set on the maximal limit

What can i do, if i want to readout the whole textfield?

Mark