I have a minor question about removing filtered text, and instead, executing whatever code it gives.
For example:
If I filter() some text that gets put into my database, is there a PHP code that allows me to “reverse” the filter, and show the text without having added the filter() command?
Example:
<?php mysql_query("INSERT INTO blah ('".filter($_POST['blah'])."')"); ?>
Can I display this text straight from the database without having the filter apply from when it was ADDED to the database?
Is there a string?
I have no clue, thanks for your help in advance.
🙂
Maybe function preg_replace is one possibility.