PHP Simple QA
It contains Simple Questions and Answers in PHP
php function to create a file
php function to create a file
$ourFileName = "testFile.txt";
$ourFileHandle =
fopen($ourFileName, 'w')
or die("can't open file");
fclose($ourFileHandle);
Newer Post
Older Post
Home