OK, I am using a dynamicall generated drop down menu to execute a certain SQL function, however, I cant get the value of the object selected, and only the name.
Below is an example of the script that I am using:
Code: Select all
<select size='1' name='action".$row['id']."'>
<option value='accept".$row['id']."'>Accept</option>
<option value='decline".$row['id']."'>Decline</option>
<option value='void' selected>Do nothing</option>
</select>
The idea is that I can add/decline members easily based upon their ID number, and accept/decline unlimited amounts (within reason

) of applications simultaniously. However, as I have previously stated, I am finsind it difficult to get the actual value the drop down box gives because of its dynamically generated name.
Thanks, Archy.