since I spent countless hours trying to fix the "REQUST_METHOD" error in PHP and didn't find anything useful on the Internet, this is my report on this issue: Chrome seems to have an error in version 30.0. 1599.101
my jquery test code is:
$.ajax({
type: "POST",
url: '../Server/test.php',
data: {data:"data"}
});
$.ajax({
type: "PUT",
url: '../Server/test.php',
data: {data:"data"}
});
$.ajax({
type: "GET",
url: '../Server/test.php',
data: {data:"data"}
});
PHP:
<?
echo $_SERVER['REQUEST_METHOD'];
?>
in Chrome, the answer was PUT, PUT, GET in Opera, as expected, POST, PUT, GET
source
share