So I have this form that I am submitting to a php script that echos $_SERVER['REQUEST_METHOD']. I do not know why, but even though I specify the POST method in the form, it always echoes GET. Why is this? What am I doing wrong?
<form action="location.php" method="POST">
<table>
<tr>
<td>name</td>
<td><input type="text" name="name"></td>
</tr>
<tr>
<td>address</td>
<td><input type="text" name="address"></td>
</tr>
<tr>
<td>lat</td>
<td><input type="text" name="lat"></td>
</tr>
<tr>
<td>lng</td>
<td><input type="text" name="lng"></td>
</tr>
<tr>
<td>user</td>
<td><input type="text" name="user"></td>
</tr>
<tr>
<td>type</td>
<td><input type="text" name="type"></td>
</tr>
<tr>
<td>method</td>
<td><input type="text" name="methoda"></td>
</tr>
<tr>
<td><input type="submit" name="submit"></td>
</tr>
</table>
</form>
as I have spent countless hours trying to fix a bug related to the "REQUST_METHOD" being wrong in PHP and not finding anything helpful online, this is my report on the issue: Chrome seems to have a bug in the Version 30.0.1599.101
my jquery test code was:
php:
in Chrome the response was PUT, PUT, GET in Opera as expected POST, PUT, GET