Pass value from form to URL -


i want simple form sends user adress added value form. http://example.com(value input name "epost")

is possible without script etc?

<form method="get" action="http://google.com"> e-post:<br> <input type="text" name="epost">  <p> organisation <select name="organisation"> <option value="1">org 1</option> <option value="2">org 2 korset</option> </p> </br>  <input type="submit" value="done"> </form> 

you can send params in url using get:

<form action="http://www.google.com/search" target='_blank'>    key word:    <input type='text' name='q' value='rob' />    <input type='submit' />  </form>

<a href="http://www.google.com/search?q=rob" target='_blank'>search rob</a>


Comments

Popular posts from this blog

node.js - Using Node without global install -

How to access a php class file from PHPFox framework into javascript code written in simple HTML file? -

java - Null response to php query in android, even though php works properly -