File "test_sauve.php"

Full Path: /home/analogde/www/burndown/test_sauve.php
File size: 183 bytes
MIME-type: text/plain
Charset: utf-8

 <?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);
?>