Skip to content

Instantly share code, notes, and snippets.

@PrivateGER
Created October 27, 2017 13:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PrivateGER/895cc3e06dcb39ca60eee6598cb8ad66 to your computer and use it in GitHub Desktop.
Save PrivateGER/895cc3e06dcb39ca60eee6598cb8ad66 to your computer and use it in GitHub Desktop.
Easy Coding - PHP Files
<?php
$filehandle = fopen("myfile.txt","w");
fwrite($filehandle,"EasyCoding is cool!");
$filecontent = file_get_contents("myfile.txt");
echo $filecontent;
fclose($filehandle);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment