In PHP How can I send the Data entered by a user in a text field to a txt file inside of a folder on my server.
views:
19answers:
1
+2
A:
To clear the file and open for writing:
$h = fopen("path and filename", "wb+");
or appending:
$h = fopen("path and filename", "ab+");
To write to the file:
fwrite($h, $myString);
Then close it:
fclose($h);
Delan Azabani
2010-05-06 10:44:03