$_POST['message'] gives a 404
I am using Wordpress 3.3.1 and building a small API to be able to send an SMS to insert data.
?php
/**
* Template Name: API: Response
*
*/
print_r('hello');
?
The following $_POST
variables are being sent from the SMS provider
$_POST['message']
$_POST['from']
When using $_POST['message']
, $_GET['message']
or $_REQUEST['message']
Wordpress gives me a 404. Works like a charm when using $_POST['_message']
.
Any ideas? Can't find it in the reserved taxanomies.