- 1
How to send text at documment.txt in php
i want help please
3 Answers
+ 2
please check PHP course in SL
<?php
$myfile = fopen("names.txt", "w");
$txt = "John\n";
fwrite($myfile, $txt);
$txt = "David\n";
fwrite($myfile, $txt);
fclose($myfile);
/* File contains:
John
David
*/
?>
+ 1
Send?
Can you be a bit more specific?
+ 1
thank you