To call php from a database and have it still work correctly?
yes. use eval();
ie.
if you have in field "whatever"...
<?php
echo "hi I am a php script";
?>
.. in the database... then you will call it like..
eval($row[whatever]);
Yeah thats what I was thinking. Just wanted to make sure. Thanks for the insight.