Hi all,
I'm passing some data to a php script from a web client using the same key id. The first as a parameter to a php script call 'php/items-se-script.php?data={"SSID":"12"}' via the GET method and the other 'data={"MMID":"44"}' by the the POST method.
I firebug, the parameters tab shows only 'data {"SSID":"12"}' and the post tab shows only 'data {"MMID":"44"}'.
I assume that i can only get data {"SSID":"12"} via the $_GET php function and data {"MMID":"44"} only via the $_POST function?
Is it also possible to get both using the $_REQUEST['data'] function even though the keys are the same?