I have some data I am fetching out of my mysql database and instead of just searching for one term I would like to select from two different terms (two different drop downs) that would filter and refine my results. Here is the code that I am using.
<select style="width: 200px" onChange="setMailingList(this.value)">
<option selected><?php echo $FILTER_MAILINGLIST;?></option>
<option selected>---</option>
<?php
$strQuery = "SELECT * FROM cf_mailinglist WHERE bIsEdited <> '1' AND bDeleted=0 ORDER BY strName ASC";
$nResult = mysql_query($strQuery, $nConnection);
if ($nResult) {
if (mysql_num_rows($nResult) > 0) {
while ( $arrRow = mysql_fetch_array($nResult)) {
echo "<option value=\"".$arrRow["nID"].'"';
if ($curListId == $arrRow['nID']) {
echo ' selected="selected" ';
}
echo ">".$arrRow["strName"]."</option>";
}
}
}
?>
</select>`
Please help.
-q
mysql_queryshould not be used in new applications. Whatever reference taught you to do this is woefully out of date and can't be trusted. – tadman Jan 3 at 18:24