Advertisement
Guest User

Untitled

a guest
Feb 14th, 2016
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. $myFile = "files/".$fileid. '.txt';
  2. $fh = fopen($myFile, 'a');
  3. $comma_delmited_list = implode("t", $_POST) . "n";
  4. fwrite($fh, $comma_delmited_list);
  5. fclose($fh);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement