Hi there,
I'm fetching some data from an MSSQL table using the mssql_fetch_object, but the text appears to cut off on the page.
The data is all there in the table, but it seems to cut off in the view page.
Has anyone else encountered this problem and perhaps knows of a workaround? Here is my code;
<?php include('includes/session.php');
$query = "SELECT content FROM pages WHERE id = '11'";
$result = mssql_query($query);
$page = mssql_fetch_object($result);
?>
<div id="leftcol">
<?php echo stripslashes($page->content) ?>
</div>