Hi,
I have this simple form that provides options that will route the user to the page the user selects from the pull down menu.
<form method="POST" action="formprocess.php">
<p align="left"><select size="1" name="selections">
<option>MEP Engineering</option>
<option>Civil Engineering</option>
<option>Land Surveying</option>
</select><br>
<br>
<input type="submit" value="Submit" name="submit"></p>
</form>
How do I set up the formprocess.php file to load the pages associated with the following selections?
MEP Engineering ===> MEP.htm
Civil Engineering ===> Civil.htm
Land Surveying ===> Survey.htm
Thanks,