How do I have acquire multiple values from one select option value. An example here,
<html>
<form method="post" action="#">
<select name="retrive_destination">
<?php while($row = mysql_fetch_assoc($result)){
$destinationID = $row['destinationID'];
$destination_place = $row['destination_place'];
echo '<option value="'.$destinationID.'">'.$destination_place.'</option>
?>
<input type="submit">
</select>
</form>
</html>
How do i get both values '$destinationID' and '$destination_place' from one option value , when the form i submitted as i need both values when the user selects an option on the next step. THank you guys cheers.