We've got a bunch of web sites that use PHP scripts to allow administrators to edit their pages via HTML forms.
Basically, everything was working fine until the servers upgraded their PHP to 4. Now, POST variables do not show up, whether I use
$POST['name'], $POST["name"], $HTTP_POST_VARS or just the variable straight up (e.g. $name).
However, explicit passing (script.php?name=val), works fine...
Help!