Advertisement
» 2009 » May
-
php write to file ! woooo hooo?>
Save the following code as write.php. Make sure you have write permissions for the folder for this to work.
$myFile = "testFile.txt";
$fh = fopen($myFile, 'w') or die("can't open file");
$stringData = "Bobby Bopper\n";
fwrite($fh, $stringData);
$stringData = "Tracy Tanner\n";
fwrite($fh, $stringData);
fclose($fh);
echo "myFile.txt";
?>



