예제 #1
0
    echo "</OPTION>\n";
}
?>
</SELECT>

<?php 
//-----------------------------------------------
//Location Dropdown
?>

<SELECT NAME="locID">
<?php 
echo "<OPTION VALUE='0' ";
echo ">All Locations</OPTION>\n";
$locs = new RDlocation(DBconnect());
$results = $locs->queryAll();
$currType = "";
while ($locs->parseNextRow($results)) {
    if ($locs->f_type != $currType) {
        echo "<OPTION VALUE='{$locs->f_type}' ";
        if ($currentQuery->locationID == $locs->f_type) {
            echo "SELECTED";
        }
        echo ">";
        echo fixFieldForTextArea("All " . $locs->f_type);
        echo "</OPTION>\n";
        $currType = $locs->f_type;
    }
    echo "<OPTION VALUE='{$locs->f_locationID}' ";
    if ($currentQuery->locationID == $locs->f_locationID) {
        echo "SELECTED";