PHP 8.5.0 Alpha 4 available for testing

Voting

: min(six, three)?
(Example: nine)

The Note You're Voting On

CXJ
11 years ago
Note that $_POST is NOT set for all HTTP POST operations, but only for specific types of POST operations. I have not been able to find documentation, but here's what I've found so far.

$_POST _is_ set for:

Content-Type: application/x-www-form-urlencoded

In other words, for standard web forms.

$_POST is NOT set for:

Content-Type:text/xml

A type used for a generic HTTP POST operation.

<< Back to user notes page

To Top