jquery/test/data/json.php

9 lines
208 B
PHP
Raw Normal View History

<?php
error_reporting(0);
$json = $_REQUEST['json'];
if($json) {
echo '[ {"name": "John", "age": 21}, {"name": "Peter", "age": 25 } ]';
} else {
echo '{ "data": {"lang": "en", "length": 25} }';
}
?>