What does that mean?
I do not know how to use JSON. I don't know what it is.
Your link is in french, I changed it to English, but that is just another bit of helpfulness.
In English, it still does not tell me anything about how to use JSON for a webserver of Bitcoin transactions.
JSON is simply a string of data. The JSON encoding is just a way to share this data easily.
You can make the test yourself. Create a PHP array, put some data in it. Use something like:
$string = json_encode($array);
var_dump($string);
and you'll see your $array encoded in JSON. To get it back in an array format, you do:
$array = json_decode($string, true);
and you will have your array back.
With JSON, servers can simply broadcast data in a format that any language can read and decode easily.
Sorry for the french link BTW, I sometimes mix up languages.