Indeed.

I recommend just leaving callbackKey to its default (callback), and
using something like:

<?php
    $something = array(
        'error' => '0',
        'disponible' => 0
    );
    $json_string = json_encode($something);

    echo $_GET['callback'], '(', $json_string, ')';
?>

Reply via email to