<form name="update" method="post" action="ex_update.php?get_id=<?php echo $_GET['id']; ?>">
<p><strong>Enter Name:</strong>
<input type="text" name="name">
<br />
ID:
<label for="select"></label>
<select name="id">
<?php
$query = "SELECT * FROM test";
$run = mysql_query($query);
while($output = mysql_fetch_array($run)){
echo "<option value=\"{$output['id']}\">{$output['id']}</option>";}
?>
</select>
</p>
<p>
<input type="submit" name="submit" value="Update!">
</p>
</form>
This is the form that I submit through. I am pretty sure that the problem is in the form because every time I submit it I get index.php?id= || index.php?id=0 So the problem is that I want to pick-up the id which I select in the select menu
Thanks a lot FarrisFahad