Ok, here is the code I am using to eval:
eval ("\$line[2] = '$line[2]';");
$line[2] is a database entry which reads:
<?php
echo "test tag";
?>
However, the HTML produced reads:
<?php
echo "test tag";
?>
Basically, it didn't eval(); anything. Anyone know why?
Thanks