Is there a way to update a html/txt file using a form and php? Lets say that i have a form like
<form method="post" action="test.php3">
<input type="text" name="test1" size="15">
<input type="text" name="test2" size="3">
</form>
test.php3 should write the form inputs to the text file, test.txt, and save it.
The textfile consists of a html table like
<table>
<tr>
<td>[test1][test2]</td>
</tr>
</table>
test.php3 should always update the [test1] and [test2] variables with the form input.
in a htmlpage I then would like to use the text file as an SSI.