i have a simple form with a gender drop down and a temperature dropdown and i want them to go to the next page and just simple be outputted to the screen. I think i may have to change my save button as well. must use javascript with i could use php lol
<div class="form-group">
<label for="sel1">Gender:</label>
<select class="form-control" id="gender">
<option>Male</option>
<option>Female</option>
</select>
</div>
<div class="form-group">
<label for="sel1">Temperature (Degrees):</label>
<select class="form-control" id="gender">
<option>Fahrenheit</option>
<option>Celcius</option>
</select>
</div>
<div style="text-align: center;"><a href="index.html" class="btn btn-info btn-lg"> Save Settings</a></div>