you need <form> tags
Main Topics
Browse All Topicshere is my site... http://www.wrteam.com/cont
<td height="2" colspan="2"> <div align="center">
<input type="hidden" name="recipient" value="cabrioswap@aol.com"
<input type="hidden" name="redirect" value="http://www.wrteam.c
<input type="submit" name="Submit" value="Submit">
</div></td>
i thought everything looked good, but when i hit the submit button, nothing at all happens
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
hi
youve got no <form></form> on that page
<form action="http://www.yoururl
<input type="hidden" name="recipient" value="cabrioswap@aol.com"
<input type="hidden" name="redirect" value="http://www.wrteam.c
<input type="submit" name="Submit" value="Submit">
</form>
tut tut tut guys u shud kno ya dont need the tags... i am surprised.
<html>
<head>
<script language="javascript">
function submit() {
parent.location="http://ww
}
</script>
<noscript><a href="http://www.wrteam.co
</head>
<body>
<input type="submit" name="Submit" value="Submit" OnClick="submit()">
</body>
</html>
:D that dus it perfectly mate
tut tut tut guys u shud kno ya dont need the tags... i am surprised.
<html>
<head>
<script language="javascript">
function submit() {
parent.location="http://ww
}
</script>
<noscript><a href="http://www.wrteam.co
</head>
<body>
<input type="submit" name="Submit" value="Submit" OnClick="submit()">
</body>
</html>
:D that dus it perfectly mate
okay, i tried the <form> and first i was gettinga 404 error, but now its just reseting and at the bottom saying done. but it never sends anything this is what i changed it to
<form><form action="http://www.wrteam.
method="post">
<input type="hidden" name="recipient"
value="cabrioswap@aol.com"
<input type="hidden" name="redirect"
value="http://www.wrteam.c
<input type="submit" name="Submit"
value="Submit">
</form>
okay i saw i had two forms so i changed it to
<form action="http://www.wrteam.
method="post">
<input type="hidden" name="recipient"
value="cabrioswap@aol.com"
<input type="hidden" name="redirect"
value="http://www.wrteam.c
<input type="submit" name="Submit"
value="Submit">
</form>
and i am getting the error again, it wasn't 404, sorry it was:
Method Not Allowed
The requested method POST is not allowed for the URL /contact.html.
Apache/1.3.27 Server at www.wrteam.com Port 80
yeah
the action should target that
<form action="http://www.wrteam.
method="post">
<input type="hidden" name="recipient"
value="cabrioswap@aol.com"
<input type="hidden" name="redirect"
value="http://www.wrteam.c
<input type="submit" name="Submit"
value="Submit">
</form>
thats if formmail.php is in the root of your site
you probally have a path to it like
action="http://www.wrteam.
and enclose all of the form in the <form></form> tages
otherwise the elements will get leftout
jonnal
okay i did that, and it sends... but it doesn't send anything that they fill out? i would recieve an email that just says submit; submit? do i need to place the form action before all of my info to fill out? please check out my source at http://www.wrteam.com/cont
Just like jonnal said, make sure the <form> tags surround the entire form. Currently you have it surrounding only your hidden fields and the button, which is why the only field you recieve is the submit value.
The easiest way to do this is to surround the entire table that your form is in with the form tags.
If this works, give credit to jonnal. He helped you out alot more than I did.
yeah nickles80 is right
you must enclose every element in the form between the 2 tags below
<form action="http://www.wrteam.
method="post">
</form>
easiest wat to do this is find the <body>tag and place the first tag just after it.
<body
then find the </body> tag and place the </form> just before it..
the body tag in your page lasts for about 3 lines
and the you have to remember to remove the original form tags
Business Accounts
Answer for Membership
by: nickles80Posted on 2003-03-05 at 10:44:34ID: 8073878
You need form tags surrounding your form. e.g.
<form name="formName" method="get(or post)" action="page.htm">
</form>