Save HTML form submissions?

[Daniel]

New member
Hey everybody!

I'm coding up a website right now, and since the website is in "under construction" mode until the business is good to go, a have a textbox where people type in their e-mail address and it saves it to a file on the server, so I can access that file when the site is ready to go, and send off an e-mail saying the full site is launched.

Problem is, I don't know *how* to take the text from my <form> textbox and write it to a file.
Here's my code:

<form name="input" action="html_form_action.asp" method="get">

<input style="color:#3D3D3D; background: white; border: 0px; width: 253px; position:relative; top:16px; left:226px;" type="text" name="user" />

<input style="position:relative; left:480px; top:-1px; border:none;" class="sbutton" type="submit" value="" name="user" />

</form>

Can y'all help me out?

Thanks a lot =)
-Daniel

P.s.: the file WILL be encrypted and password protected so only I can get to it. No need to worry about that, I just need to write the textbox entry to a file.
 
Back
Top