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.

Code:
'This code is for disabling resizing'Written by Matthew GatesOption Explicit
How do i fix that?

this is my current code
PHP Code:
              $title mysql_result ($result0"title"); //Get the title
            
$type mysql_result ($result0"type");
            
$description mysql_result ($result0"description");
            
$code mysql_result ($result0"code");
            echo 
"<center>$title</center><br>$vb<br>$description<br><br>$code"