I installed php + apache via Xampp. PHP is working, but does not recognize Json, does anyone know if I need to enable anything in php.ini?
Returns the error: Notice: Undefined index: jsoncallback
The return line is:
echo $_GET["jsoncallback"] . '(' . json_encode("Valor=" . $teste ) . ');';
The code works, I've circled the same code on the localhost of another computer, and also on a remote server, and it works perfectly, only on this computer I installed via Xampp does not work.
Thank you