<select name='brgylist' id='list'>
<?php
require_once "connection.php";
$result = mysql_query("SELECT `BrgyCode`,`Barangay` FROM `ref Barangay`");
while($rec = mysql_fetch_array($result))
{
echo '<option value="'.$rec['BrgyCode'].'">'.$rec['Barangay'].'</option>';
}
echo 'The Code selected is '.$rec['BrgyCode'];
?>
</select>
I want to store the selected dropdown list to a variable because i will use it to query to output in different dropdownlist. please i need your help on this.
melhanz 0 Newbie Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.