allright...
replace this
Code:
."<tr>\n"
."<td bgcolor=\"#eeeeee\">$content</td>\n"
."</tr>\n"
EXACTLY with this:
Code:
."<tr><td bgcolor=\"#eeeeee\">\n";
if (substr($content,0,2) != "<?") echo $content;
else {$content = str_replace ("<?", "", $content);
eval($content);}
echo "</td></tr>\n"
good luck! (reply here if it doesn't work.. i'll receive an e-mail automaticly...)
(you might want to check out
www.vhvn.net to see my phpNuke & vBB site to see what else i've come up with in the past 4 days..

)