submit form problem
Posted
by basma
on Stack Overflow
See other posts from Stack Overflow
or by basma
Published on 2010-05-22T07:35:48Z
Indexed on
2010/05/22
7:40 UTC
Read the original article
Hit count: 266
hi
I have a problem with "all" of my form submition "search form, login form, regester form,.."
the problem shows when I submit the form it doesnt take me to the action page, insted it tack me to my root page :"http://localhost/project/Home/"
this is a sample of my search form witch search members or groups as the user choose and it can be submitted by clicking search.jpg
<form name="searchform" action='Searchb.php' method='GET' >
<a href=""><img src="img/search.jpg" width="60" height="49" onClick="searchform.submit()" style="border-style: none"></a>
<input type="text" name="Search" /> <label>member</label><input name="radio1" type="radio" value="Member" /> <label>Group</label> <input name="radio1" type="radio" value="Group" />
</form>"
© Stack Overflow or respective owner