Skip to content

Instantly share code, notes, and snippets.

@leveled
Last active December 29, 2016 16:56
Show Gist options
  • Save leveled/edc9268639dd5b0f0e59dcd7f2e465bd to your computer and use it in GitHub Desktop.
Save leveled/edc9268639dd5b0f0e59dcd7f2e465bd to your computer and use it in GitHub Desktop.
opens a file and writes to the file using php
<?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