--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/server/src/main/webapp/static/data/simple-persist.php Tue Dec 25 21:29:11 2012 +0100
@@ -0,0 +1,14 @@
+<?php
+ header('Content-Type: application/json; charset=utf-8');
+ $file = "dynamic-data.json";
+ if (isset($_GET['reset']) && $_GET['reset']) {
+ $resetfile = "test-data.json";
+ file_put_contents($file, file_get_contents($resetfile));
+ }
+ if ($_SERVER['REQUEST_METHOD'] == 'PUT') {
+ file_put_contents($file, file_get_contents("php://input"));
+ echo json_encode(array("result" => "OK"));
+ } else {
+ echo file_get_contents($file);
+ }
+?>
\ No newline at end of file