how can I get this to post to index.php?View=Member&ID=$$
I can get it to post to index.php?ID=$$ but now without the other variable in there.
<form method="POST" action="index.php" style="float: right;">
<select name="Members" size="1" onchange='this.form.submit()' >
<option value=""></option>
<?php
$query = "SELECT * FROM Users";
$result = odbc_exec($connection, $query) or die ("Error: ". odbc_error());
while(odbc_fetch_row($result)){
$AuctionID = odbc_result($result, 1);
$AuctionTitle = odbc_result($result, 2);
?>
<option value="<?php echo $ID; ?>"><?php echo $Title; ?></option>
<?php } ?>
</select>
</form>