Click to See Complete Forum and Search --> : Problem with form


rickyjd
10-05-2003, 10:55 PM
I set up a form with html.

When you go into fill out the forma new window opens with the following message: invalid 'to' email address.

Here is the beginning of my form:
<form action=http://d2homebusiness.com/ipw-cgi/forms.cgi" enctype-"application/x-www-form-urlencoded" method="post"

Then there is various html code for namme, site, site URL etc.

My submit button and end of form looks like this:
<input type="submit" name=Form_Submit" value="Submit Link"/><input type="hidden" name="_ipwformid" value="142"/></form>

Why do I keep getting the message: invalid 'to' email address? Any help is greatly appreciated.

Thanks
Derrick

Khalid Ali
10-06-2003, 12:27 AM
Here is the first thing I spotted (uness its a typo)

<form action=http://d2homebusiness.com/ipw-cgi/forms.cgi" enctype-"application/x-www-form-urlencoded" method="post"

the bold text should have an equal(=) sign rather a single dash(Minus).SOmething like below

<form action=http://d2homebusiness.com/ipw-cgi/forms.cgi" enctype="application/x-www-form-urlencoded" method="post"

if thats not the problem then your errors lies somewhere else in the code,the code snippet you posted does not seem to have any proble(other then the one I mentioned above)