Guest User

Untitled

a guest
Apr 1st, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. <?php
  2. $fileopen=fopen("file.txt", "a+");
  3. $write="строка";
  4. fwrite($fileopen,$write);
  5. fclose($fileopen);
  6. ?>
Advertisement
Add Comment
Please, Sign In to add comment