I am developing a application that sends in jquery a parameter via URL like this:
json = JSON.stringify(chk);
base64 = Base64.encode(json);
location = '?route=home/debts/insert&json='+base64;
where chk is type array.
Then in the target page I am decoding it in PHP with:
$chk = json_decode(base64_decode($_REQUEST['json']));
On local server this works miracle, but when into live system, on the server, I can't get the URL parameter, actually the $_GET['json'] or $_REQUEST['json'] are blank, even if I can see them in the URL format
Could someone give me a hint about what am I wrong?
EDIT:
The var_dump($_GET) fired: array(1) { ["route"]=> string(17) "home/debts/insert" }