data tables are going to need some work yet, but the other stuff seems to be working 100%
8 lines
156 B
PHP
8 lines
156 B
PHP
<?php
|
|
header('Content-type: application/json');
|
|
//header('Content-type: text/plain');
|
|
echo(json_encode(array(
|
|
POST => $_POST,
|
|
GET => $_GET
|
|
)));
|
|
?>
|