Created
October 27, 2017 13:59
-
-
Save PrivateGER/895cc3e06dcb39ca60eee6598cb8ad66 to your computer and use it in GitHub Desktop.
Easy Coding - PHP Files
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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