ajax e dom

This commit is contained in:
2014-12-07 19:33:49 +01:00
parent c30036a3bc
commit 7f21febb90
13 changed files with 423 additions and 64 deletions

16
ajax2_json.php Normal file
View File

@@ -0,0 +1,16 @@
<?php
/**
* Created by xgiovio.
* User: Giovanni
* Date: 05/12/2014
* Time: 13:36
*/
$json = file_get_contents('php://input');
if ($json){
print_r(json_decode($json));
}else
echo "No data yet";
?>