How can I print a $_POST?
$_POST
Example:
echo $_POST[\'data\'];
This returns nothing...
You can only show the values of keys that exist. array_keys() returns an array containing the keys that exist in the array. If there is no output for a key despite the fact that the key exists then the array may contain an empty value for that key.