If I shouldnt have posted this here, I am sorry, I saw no html faq area & figured ppl with form knowledge could help me out. This is my first "crude html form", but it works. I am using this on a vb site of a friend that wants this to email the form to him & re-direct applicants to another page. I have tried so many times to get the re-direct to work...I cant, as you see looking at my creation that I am not that good at html and I am in the kindergarden stage of it. Also, when submit is clicked, pop-up appears asking if its ok to send...no problem, but then another pop up appears showing somewhat the same with a blank send to box, clicking send works, and email is sent. In your mail box is shows:"Form posted from Windows Internet Explorer." not from site itself...how do I fix this? If anyone could help me set up my re-direct I would be forever in your debt.....
Code:
<html>
<div style="border: 25px ridge;">
<body>
<FONT COLOR="FFD700">
<h1 align="center">YOUR TITLE</h1>
<form action="MAILTO:YOUR EMAIL ADDRESS"method="POST"enctype="text/plain">
<p style="text-align: center;">
1. Real Name:<br><br> <input type="text" name="1. Real Name">
<br><br>
2. AA Name:<br><br> <input type="textbox" name="2. AA Name">
<br><br>
3. Have you read the Code of Conduct and willing to abide by it at all times?<br><br>
Yes:
<input type="radio" checked="checked"name="3. Have you read the Code of Conduct and willing to abide by it at all times?" value="yes">
<br><br>
No:
<input type="radio"name="3. Have you read the Code of Conduct and willing to abide by it at all times?" value="No"><br><br>
4. Are you 18 years of age or older?
<br><br>
Yes:
<input type="radio" checked="checked"name="4. Are you 18 years of age or older?" value="Yes">
<br><br>
No:
<input type="radio"name="4. Are you 18 years of age or older?" value="No">
<br><br>
5. What is your AAGUID Number?<br><br>
<input type="text" name="5. What is your AAGUID Number?">
<br><br>
6. Do you have a AAO Tracker account? <br><br>
Yes:
<input type="radio" checked="checked"name="6. Do you have a AAO Tracker account?" value="Yes">
<br><br>
No:
<input type="radio"name="6. Do you have a AAO Tracker account?" value="No">
<br><br>
7. Link to YOUR AAO Tracker account?<br><br>
<input type="text" name="7. Link to YOUR AAO Tracker account?">
<br><br>
8. Are you able to donate $10.00/month?<br><br>
Yes: <input type="radio" checked="checked"name="8. Are you able to donate $10.00/month?" value="Yes">
<br><br>
No: <input type="radio"checked="checked"name="8. Are you able to donate $10.00/month?" value="No">
<br><br>
9. Please list previous clans that you have been with in the past.<br><br>
<textarea cols="50" rows="14" name="9. Please list previous clans that you have been with in the past."></textarea><br><br>
10. Please list previous account names that you have used in the past.<br><br>
<textarea cols="50" rows="14" name="10. Please list previous account names that you have used in the past."></textarea><br><br>
11. Please tell us a little bit about yourself and why you want to join BlackwaterOps.<br><br>
<textarea cols="50" rows="14" name="11. Please tell us a little bit about yourself and why you want to join BlackwaterOps."></textarea><br><br>
12. Have you ever been banned for cheating/hacking/exploiting or linked to any accounts that have been banned for cheating/hacking/exploiting?<br><br>
Yes:
<input type="radio" checked="banned"name="12. Have you ever been banned for cheating/hacking/exploiting or linked to any accounts that have been banned for cheating/hacking/exploiting?" value="Yes">
<br><br>
No:
<input type="radio"name="12. Have you ever been banned for cheating/hacking/exploiting or linked to any accounts that have been banned for cheating/hacking/exploiting?" value="No">
<br><br>
<input type="hidden" name="sendtoemail" value="YOUR EMAIL ADDRESS"><br>
<input type="submit" value="Submit"><br></p>
<input type="hidden" name="redirect" value="YOUR URL">
</FONT>
</form>
</body>
</div>
</html>
</form>
</body>
</html>
EDIT: Never mind, I figured it out.