0

I have a problem with "all" of my form submission "search form, login form, register form,.."

the problem shows when I submit the form it doesn't take me to the action page, instead 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" />&nbsp;
 <label>member</label><input name="radio1" type="radio" value="Member" />&nbsp;
 <label>Group</label> &nbsp;<input name="radio1" type="radio" value="Group" />
</form>"
Veger
38k11 gold badges110 silver badges118 bronze badges
asked May 22, 2010 at 7:35
1
  • Well, I expect it should take you to Searchb.php. Is that the right or the wrong result? Commented May 22, 2010 at 7:37

1 Answer 1

2

You have this in your code that is probably the problem:

<a href="">
 <img src="img/search.jpg" width="60" height="49" onClick="searchform.submit()" style="border-style: none">
</a>

As you can see there is an empty link tag, and when you click on it, it takes you to your root localhost file...

You could try doing this:

<a href="#" onClick="searchform.submit(); return false;">
 <img src="img/search.jpg" width="60" height="49" style="border-style: none">
</a>

Try it and let me know Ladislav

answered May 22, 2010 at 7:53
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.