jhylands

Write to file PHP

Jan 3rd, 2012
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.11 KB | None | 0 0
  1. function Write($FileLocation , $Text){
  2. $file = fopen($FileLocation,"w");
  3. echo fwrite($file,$Text);
  4. fclose($file);}
Advertisement
Add Comment
Please, Sign In to add comment