- Joined
- Feb 7, 2009
- Messages
- 427
Okay, I've got a form on my site for stat collection (I'm hosting several Blizzard related things... Such as guides on how to host), and I've got it to email me the information set in forms.
Now, I don't know much about HTML... I had to ask someone to make this script for me, but could someone tell me what I should add to make it save the information on a .html file on the server?
Thanks for any help
- TheLifelessOne
Now, I don't know much about HTML... I had to ask someone to make this script for me, but could someone tell me what I should add to make it save the information on a .html file on the server?
Code:
<form action="mailto:"> <!-- BE SURE TO CHANGE EMAIL HERE! -->
Username: <input type="text" size="30" maxlength="40" name="name"><br />
Server: <select name="server">
<option>Azeroth</option>
<option>Lordaeron</option>
<option>Northrend</option>
<option>Kalimdor</option>
</select><br />
Client: <select name="client"> <!-- YOU CAN ADD MORE OPTIONS OR EDIT THEM WITH THE SAME FORMAT -->
<option>Starcraft</option>
<option>Starcraft: Brood War</option>
<option>Diablo</option>
<option>Diablo 2</option>
<option>Diablo 2: LoD</option>
<option>Warcraft III: Reign of Chaos</option>
<option>Warcraft III: The Frozen Throne</option>
<option>Warcraft II: Battle.net Edition</option>
</select><br />
<input type="submit" value="Send">
</form>
Thanks for any help
- TheLifelessOne