Rewrite of the Ajax module by Julian Aubourg. Some (dated) details can be found here...
[jquery.git] / test / data / with_fries_over_jsonp.php
diff --git a/test/data/with_fries_over_jsonp.php b/test/data/with_fries_over_jsonp.php
new file mode 100644 (file)
index 0000000..456aeb3
--- /dev/null
@@ -0,0 +1,7 @@
+<?php
+error_reporting(0);
+$callback = $_REQUEST['callback'];
+$json = $_REQUEST['json'];
+$text = json_encode(file_get_contents(dirname(__FILE__)."/with_fries.xml"));
+echo "$callback($text)";
+?>