I\'m trying to set up a CMS on the back of a site but whenever post data has a in it the post data gets scrapped.
in it the post data gets scrapped.
I\'ve got $config
$config
i defined
global $mypost; $mypost=$_POST;
in index.php of my root cms
then anywhere i can the global variable like
global $mypost; $var=isset($mypost["field"])? $mypost["field"]:"";
whenever i need post without filter.
worked for me hope it helps.