I\'m trying to test a simple PHP page using the Chrome extension Postman. When I send URL parameters, the script works fine (eg the variables are available in the $_RE
$_RE
I was setting the url in Postman to be http:// but Apache was redirecting to https:// and somehow the POST variables were being dropped along the way.
http://
https://
After I changed it to https://, the POST variables worked properly.
See also: https://stackoverflow.com/a/28461500/704803