Quote:
Originally Posted by tical
encode the variables before they go in... decode after they're out
and i think the eval() function will be useful
http://www.php.net/eval
|
so I "encode" the variables first with eval?
ie:
$php_coding = eval($_POST['php_coding');
$query = "INSERT INTO table (php_coding) VALUES ($php_coding)";
?