i have this form:
<form action = "" method = "get">
<input type = "input" name = "id" value = "3" />
<input type = "input" name = "name" value = "gloris" />
<input type = "submit" class = "button_big" name = "submit" value = "SEND" />
</form>
And how make this link (and i must use button):
http://www.link.com/3/gloris
As Felix says, this requires JavaScript. It would be something like:
Note that I added
idattributes so we can usedocument.getElementById. Also, there is no input type “input”. It should betext, or you can leave it off. You can add more fields just be adding to the array in the desired order.