View Single Post
  #5 (permalink)  
Old 07-04-09, 05:23 PM
wirehopper's Avatar
wirehopper wirehopper is offline
Community Liaison
 
Join Date: Feb 2006
Posts: 1,562
Thanks: 2
Thanked 25 Times in 25 Posts
Try something like this:

PHP Code:
<?php
echo 'Test from database';
?>
Store it in the database, then use:

PHP Code:
echo eval($content); 
to display it.
Reply With Quote