if it helps here is teh code that outputs the content:
<?php
include "config.php3";
include "dbconnect.php3";
include "Admin/bbcode.php";
$id = $_REQUEST['pageid'];
if( isset($id) )
{
$a = "SELECT * FROM $table1 WHERE id='$id' AND published='1'";
$rows = mysql_query($a) or die (mysql_error());
while ($b = mysql_fetch_array($rows)){
$str = $b['content'];
$cont = bbcode_format($str);
}
$test = mysql_num_rows($rows);
if($test == 1)
{
$cont1 = nl2br($cont);
eval ("?>$cont1<?");
}}
elseif($id = '000')
{
$rows = mysql_query("SELECT * FROM $table1 WHERE id = 000");
while ($b = mysql_fetch_array($rows)){
$str = $b['content'];
$cont = bbcode_format($str);
$cont1 = nl2br($cont);
eval ("?>$cont1<?");
}}
?>