jasoncorn:
your solution is pretty simple:
replace
Code:
."<b>.: $title</b><br>\n"
."$content"
."</td>\n"
with
Code:
."<b>.: $title</b><br>\n";
if (substr($content,0,2) != "<?") echo $content;
else {
$content = str_replace ("<?", "", $content);
eval($content);}
echo "<td>\n"
like i told ya in my second post...
sorry for the late reply btw.... i've been away for a while...
post here again if anyone needs help with phpnuke (and vb integration).
c-ya!