I know nothing about PHP and I need help with a little script.. I want a simple form where it asked for a name and a number and then when the user clicks submit it sends them to a url with includes the name and number example name : oral number: 221 221 when I click submit it should send them to mysite.com?oral&221+221 The + is important
This should do it: <input id="number" name="number" /> <input id="name" name="name" /> <button onclick="document.location = 'http://www.mysite.com?' + document.getElementById('name').value + '&' + document.getElementById('number').value;">Go</button> HTML: