From PHP code I want to create an json array:
[
{"region":"valore","price":"valore2"},
{"region":"valore","price":"valore2"},
{"region":"valore","price":"valore2"}
]
How can I do this ??
|
|
|
Easy peasy lemon squeezy: http://www.php.net/manual/en/function.json-encode.php
There's a post by |
|||||||||
|
|
Use PHP's native
Update: To answer your question in the comment. You do it like this:
|
||||
|
Simple: Just create a (nested) PHP array and call
Gives you:
|
|||||||||
|