Evuraan wrote:
Greetings..!

Question:much like $_POST in php, used to collect values from a form
sent with method="POST", is there a variable (like $QUERY_STRING in
case of a GET) to grab data from a POST request?

I am trying to avoid having a php snippet to read form data. Like
$QUERY_STRING in case of a GET, is there a variable for POST DATA.?

Short answer : no. Apache does not set up an environment value with the content of a POST.

But in fact the question does not make much sense.

In the case of a POST, the data may include, for instance, the whole content of a 30 MB uploaded file. There must exist some method in PHP to obtain this data, but that is a question best asked on a PHP forum.

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [email protected]
  "   from the digest: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to