Advertisement
sethxi

Untitled

Apr 12th, 2015
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. <html>
  2.   <head>
  3.     <title>CCTest.</title>
  4.   </head>
  5.   <body>
  6.     Test.
  7.   </body>
  8. </html>
  9.  
  10. <?php
  11.   $file = "data.json"
  12.  
  13.   if(empty($_GET["msg"])){ return };
  14.  
  15.   $msg = $_GET["msg"];
  16.  
  17.   $file_contents = json_decode(file_get_contents($file));
  18.  
  19.   array_push($file_contents, $msg);
  20.  
  21.   file_put_contents($file, json_encode($file_contents));
  22. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement