I've been playing a little bit trying to store some PHP code in MySQL
and get it to execute. However, it behaves just like expected in that it
just displays the code, and doesn't execute it. Essentially, i want to
do this:

<?
        while($data = mysql_fetch_array($result)) {
                echo $data["text"];
        }
?>

With $data["text"] containing:
<?
        echo $var;
?>

Anybody know a way to actually make this work? Thanks,

Joe

Reply via email to