Need help with submit form

SquirlyNutz

Power Member
Joined
Feb 20, 2009
Messages
721
Reaction score
541
i want to place a fake "submit email" form on my site, so when the user enters his email and clicks submit,he is sent to a page of my choice.
Could someone please help me with this? or please edit the following code?

<form name="myform" action="handle-data.php">
<font face="tahoma" size="2" color="#ffffff">Submit Email: <input type='text' name='query' />
<input type="submit" value="Submit" /><input type="reset" /></a>
</form>
 
Do you need to gather the email of the user or you just need a button that redirects him to your desired page ? or both ?
 
just put this sucker in
onsubmit="location.replace(thenextpage.html);"
 
well, just in case you still haven't figured it out after 20 days...

Code:
<form name="myform" action="[COLOR="Red"]handle-data.php[/COLOR]">

just replace that with whatever page you need the form to redirect to
 
Back
Top