I have my pages saved into my DB and display them like this
$result3 = mysql_query ("SELECT HTML From Headers WHERE Header_ID = '1'");
$row3 = mysql_fetch_array($result3);
eval($row3[code=html]);
I'm then trying to insert a page using
include 'file.php?foo=1&bar=2';
But this does not work.. why??