root/LayoutTests/jquery/resources/test/data/json.php

/* [<][>][^][v][top][bottom][index][help] */
<?php
error_reporting(0);
if ( $_REQUEST['header'] ) {
        header("Content-type: application/json");
}

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

/* [<][>][^][v][top][bottom][index][help] */