Blessings to all PhpBuilder crew and a big thanks to the guys who assisted me on my last question.
I've got another that has been buggin me... i'm trying to retrieve some php functions from a specific Mysql database column which has been formatted as longtext.
I know that by just using 'stripslashes' without 'htmlspecialchars' i can run html code ... how can i allow those php functions to run when i store the database value in a string:
$row = mysql_result($result);
$my_string = stripslashes($row[0]);
Thanks in advance.