I tried that, but I always get an error msg:
<?
$connection=mysql_connect("localhost", "username", "password")or die("<font color=\"#ff0000\">ERROR: Server Not Found</font>");
$database=mysql_select_db("database",$connection);
$list=mysql_query("select * from tablename where id='$pgn'",$connection);
while($row=mysql_fetch_array($list))
{
eval($row[content]);
echo "$row[content]";
}
?>
Parse error: parse error, unexpected '<' in D:\www\kumschicknw.com\users\help\demos\eval.php(10) : eval()'d code on line 1
and if I put eval($row[content]); as an comment the page works without errors, but the variable doesn't work, but that's normal.
What I don't understand is the "eval()";