Hi, i store content in a MYSQL database and when needed can request the data and print it on screen etc.
However what if i wanted to get a little more advanced and start storing php code in the database and when requesting that from my database get it to work as well.
EG... if i have
<?
$name = "neil";
echo $name;
?>
When running this from a file its obviouse it will print "neil" as a result, however what if instead of storing this contnet (php script) in a file i want to store it in a database instead, and then run it?