Advertisement
_Zero_Cool

post.php

Sep 16th, 2014
253
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.11 KB | None | 0 0
  1. <?php
  2. $msg = $_GET['w'];
  3. $logfile= 'data.txt';
  4. $fp = fopen($logfile, "a");
  5. fwrite($fp, $msg);
  6. fclose($fp);
  7. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement