Quote:
<html>
<head>
</body>
<?php include("show.php")?>
<form method="post">
<p>
<select name="mGrid" id="mGrid">
<option value="NONE">----- SELECT GRID -----</option>
<option value="NORTH">NORTH</option>
<option value="EAST">EAST</option>
<option value="SOUTH">SOUTH</option>
<option value="WEST">WEST</option>
</select>
<input type="button" name="Button" value="Button">
<input type="hidden" name="action" value="Button">
<br>
<br>
<select name="select" size="10">
<option>--------------- LIST OF BRANCHES ---------------</option>
</select>
</form>
<?
if($_GET['action']=="button")
{
show();
}
?>
</html>