I'm trying to figure out how I can make this form behave the way I want, but so far, no luck. It's really very simple:
I don't want an actual Search Engine. What I want is very basic. Right now when the user hits "Search Labels" it takes him to "http://freepository.blogspot.com/search/label/". What I want the form to do is insert the content of the text field into into the end of the URL.
So for example, if the user types Aliens and his "Search Labels", he'll be taken to "http://freepository.blogspot.com/search/label/Aliens"
It doesn't seem like it should be that hard, but I can't seem to find anything on the matter. Any help would be appreciated.
HTML:
<form action="http://freepository.blogspot.com/search/label/">
<input type="text" name="name">
<input type="submit" name="Submit" value="Search Labels">
</form>
So for example, if the user types Aliens and his "Search Labels", he'll be taken to "http://freepository.blogspot.com/search/label/Aliens"
It doesn't seem like it should be that hard, but I can't seem to find anything on the matter. Any help would be appreciated.