Result Size:
625 x 571
<?php
$myArr =
array
(
"John"
,
"Mary"
,
"Peter"
,
"Sally"
);
$myJSON = json_encode($myArr);
echo
$myJSON;
?>