Log in

View Full Version : Issue putting two separate forms on same page



aliyak
02-12-2013, 05:45 AM
I'm having a problem with two separate forms on my site, one works, the other suddenly stopped when i added the other.

One is for a search engine (GET) method, the other a registration form (POST) method...

I keep looking at the the script, and i don't know what the problem is, i must be really old school. :confused:
I would appreciate any help offered!!!
Working, search engine form;

<form method="GET" action="/cgi-bin/htsearch">
<input type="hidden" name="config" value="htdig">
<input type="hidden" name="restrict" value="">
<input type="hidden" name="exclude" value="">
search box here
</form>

Non working, Registration form;

<form method="post" action="/cgi-bin/formmail">
<input TYPE="hidden" NAME="redirect" VALUE="http://mysite.com/Contact_Thankyou.html">
<input TYPE="hidden" NAME="subject" VALUE="New Registration Form Submission" >
<input TYPE="hidden" NAME="recipient" VALUE="contact@mysite.com">
form in here
</form>

you can view the page here
The contact page contains Search engine & Submission Form (http://www.calgarymuslims.ca/Contact.html)

What's up???
Thx in advance guys!!