I am parsing a value from a HTML element in cakephp and is being sent via Ajax to the following url;
getquestion.json?data[Job][qs1]=2
Now I am trying to access data[Job][qs1] in the controller but can't figure it out.
The returned array is;
Array ( [data] => Array ( [Job] => Array ( [qs1] => 2 ) ) )
$_GET['data[Job][qs1]']; is not working which is rather odd.