In the following form I want to post a variable, $getID, that holds the id of the user along with the rest of the information:
<?php
echo ="
<h3>What do you want to edit?</h3>
<form method='post' action='modifyrecord.php'>
<p>
Change:
<select name='getColumn'>
<option value='first_name'>First Name</option>
<option value='last_name'>Last Name</option>
<option value='email'>eMail</option>
<option value='gender'>Gender</option>
<option value='age'>Age</option>
<option value='comments'>Comments</option>
<option value='password'>Password</option>
</select>
To:
<input type='text' name='getValue'/>
</p>
</p><input type='submit' name='submit' value='modify this user'/></p>
</form>";
?>
Any help would be appreciated.