I'd like to have a page in php that normally displays information based on the GET request sent to it. However, I'd like for it to also be able to process certain POST requests. So, how can I tell if any data was sent by POST so I can act on it?
|
|
Use If it was accessed via post then check for any variables in |
||
|
|
|
Check |
||
|
|
|
|
For questions like this, usually about environment variables, here's how I figure them out:
It is much much easier than trying to find the answer in php.net's doc swamp. |
||
|
|
|
|
If you want to pass the same variables by both POST and GET then you can always use REQUEST which contains parameters from both POST and GET. However, this is generally seen as a security vulnerability as it means that variables can be more easily spoofed. If you want to test on whether the request was sent POST or GET then you can either:
Or:
|
||||||
|
|
|
I use the $_REQUEST variable if have a page and
http://is.php.net/manual/en/reserved.variables.request.php From the manual: An associative array that by default contains the contents of $_GET, $_POST and $_COOKIE. |
||
|
|
|
|
I'm pretty sure you can access a page via GET and POST, so this would be the safest way IMO |
||
|
|
