Skip to content

Instantly share code, notes, and snippets.

@leveled
Created October 19, 2016 00:50
Show Gist options
  • Select an option

  • Save leveled/c302c65ac00e3fa826deb85e76ac5dca to your computer and use it in GitHub Desktop.

Select an option

Save leveled/c302c65ac00e3fa826deb85e76ac5dca to your computer and use it in GitHub Desktop.
<?php
$myfile = fopen("newfile.txt", "w") or die("Unable to open file!");
$txt = "John Doe\n";
fwrite($myfile, $txt);
$txt = "Jane Doe\n";
fwrite($myfile, $txt);
fclose($myfile);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment