I\'m working on a page in PHP 5.3.5, and it seems that $_POST
doesn\'t contain the data submitted from my form.
This is the HTML file :
PHP 5.3 is moving away from using global, pre-set variables, like $_POST, to avoid vulnerabilities.
The issue, as I understand it, is that programmers who have never had to use $_POST or $_GET might treat it as any other variable and open themselves up to security threats.
I haven't discovered the "proper" way to retrieve $_POST data yet, but the method I've using seems fairly sanitary.
This transfers the parsed HTTP POST string to the $_POST variables