Here's the go,
In a mysql database, i have stored code snippets.
however when i print out what is in the field (the code snippet field)
It prints out with no carriage returns, i.e.
How do i fix that?Code:'This code is for disabling resizing'Written by Matthew GatesOption Explicit
this is my current code
PHP Code:$title = mysql_result ($result, 0, "title"); //Get the title
$type = mysql_result ($result, 0, "type");
$description = mysql_result ($result, 0, "description");
$code = mysql_result ($result, 0, "code");
echo "<center>$title</center><br>$vb<br>$description<br><br>$code";




Reply With Quote