figure out I had a field in database that contain php code like this (field name = mycode) :
$a = $POST[a];
$b = $_POST;
How to use this "mycode" inside my actual php script.
pretend, I already fetch that field using
$listusers = mysql_query("SELECT * FROM mysnipcode");
$rows = mysql_fetch_array($listusers);
$pullcode = $rows['mycode'];
can i just put $pullcode here ?
i tried this and it's not working
------------------------------------------------------------------------------------------------