mirror of
https://github.com/jquery/jquery.git
synced 2026-01-24 10:58:29 -05:00
8 lines
193 B
PHP
8 lines
193 B
PHP
<?php
|
|
error_reporting(0);
|
|
$callback = $_REQUEST['callback'];
|
|
$json = $_REQUEST['json'];
|
|
$text = json_encode(file_get_contents(dirname(__FILE__)."/with_fries.xml"));
|
|
echo "$callback($text)";
|
|
?>
|