I've got to make friendly URLS work (settings + .htaccess). So, rather than getting /member.html I want to get /member.
When I try to use my PHP forms (that have worked elsewhere) they don't work here.
The form method is POST
I've tried various URLS like /, /index.php, /?id=1 and the long URL.
I've tried all sorts of POST checks like:
if($_SERVER["REQUEST_METHOD"] == "POST"){
echo "2 server request<br/>";
}
if (isset($_POST['submitButton'])){
echo "3 post submitButton is set<br/>";
}
if ($_POST['submitButton']){
echo "4 post submitButton<br/>";
}
... none of these return. So the page doesn't recognize the POST header.
This leads me to suspect that the friendly URLs is the culprit. Either that or some security setting that prevents POST traffic.