I am trying to use Symfony 2 with FOSRestBundle, I've got my GET
and POST
functions working fine and i've got it returning an array fine with PUT however i cannot get my query string or input.
I've tried the obvious $_POST
, $_GET,
$_PUT
and even tried file_get_contents("php://input
"); none of these return a query string.
I am lead to believe that PUT
is used to update an existing entry which i am doing.
Any assistance would be greatly appreciated.