thanks that works great never knew about <pre> and </pre>
One more question although it doesn't relate to the last one...are there any php commands or whatever that will have it work if anything is in a mysql slot...example below
if (article_txt == NULL)
{
}
else if (article_txt == )
{
echo "<br><pre>";
include_once''.$row["article_txt"].'';
echo "</pre><br>";
}
I want it so if the row in the table is NULL it will not display anything but if it has anything ti will display...what do I put instead of null?