There are similar questions I have not understood explanation (my question is simpler..) inside php :
echo json_encode(array("value" => $data));
returns me a JSON line like:
{"value":"100"}
(assuming 100 is $data)
How can I get a json like :
{"value":100}
($data NOT doublequoted) ??
Thank you