webgui/www/extras/yui/tests/connection/submitReporter.php
JT Smith 20f8df1291 upgrading to YUI 2.6
data tables are going to need some work yet, but the other stuff seems to be working 100%
2008-10-22 23:53:29 +00:00

8 lines
156 B
PHP

<?php
header('Content-type: application/json');
//header('Content-type: text/plain');
echo(json_encode(array(
POST => $_POST,
GET => $_GET
)));
?>