hi, i gt a dynamic drop down box. here is the code:
echo "<select name=\"dropDwnBox\">";
echo "<option size =30 selected>---Select Medium---</option>";
if( mysql_num_rows($getPaintQuery) )
{
while( $row = mysql_fetch_assoc($getPaintQuery) )
{
echo "<option>$row[medium]</option>";
}
}//end of if statement
it will display watercolor, pastel, gonache... so hw do i extract the value chosen by the user from this dynamic drop down box?