server/src/main/webapp/static/data/simple-persist.php
author veltr
Thu, 14 Mar 2013 13:48:35 +0100
changeset 79 f33771f3c510
parent 47 267d67791e05
permissions -rw-r--r--
navigator language as default language

<?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);
    }
?>