Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2014
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. <?php
  2.  
  3. $path = $_SERVER['DOCUMENT_ROOT'];
  4. $file = $path . 'test.txt';
  5.  
  6. $text = $_POST['text'];
  7.  
  8. // save it to a file
  9. if (file_exists($file))
  10. chmod($file, 0777);
  11.  
  12. $handle = fopen($file, 'w');
  13. fwrite($handle, $text);
  14. fclose($handle);
  15.  
  16. echo "success";
  17.  
  18. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement