I have this form
How can I make it post the user entered data to a text file (let's call it textfile.txt) but allow textfile.txt to have more than one entry and the page that it goes to when it is prossed shows the user entered data like
Username - the username
Password - the password
Any help will be gratefully taken, thanks.
Code:
<body> <form>Username<br /> <input name="name" type="text" size="30" /><br /> Password<br /> <input name="name" type="password" size="30" /><br /> <input name="name" type="submit" value="Submit" /><input name="name" type="reset" value="Reset" /></form> </body>
Username - the username
Password - the password
Any help will be gratefully taken, thanks.
Comment