Ok so i figured out how to populate the drop down list with the list of Members on my website...that was simple. Now i want to know how do i set it to display the Users FIRST and LAST name but it will have a different value...
for example...when i choose the user "Sonny Trujillo" then the value will be its username...heres a better example
<select name="to" size="1">
<option>Sonny Trujillo</option>
<option>Joe Bob</option>
<option>I think you get it</option>
</select>
the above code will be populated from mysql...so that just an example.
So i see the menu and then i go click on Sonny Trujillo.
I then click submit
echo $_GET['to'];
But when it prints out $_GET['to'] i want it to print out the USERNAME not SONNY TRUJILLO....urg does this make any sense...help... : (