I'm doing something wrong since only one record displays in this dropdown, rather than the 7 that exist in the database:
<select name="MailingDate" id="Mailingdate">
<?php
while(!$rsMailingDates->atEnd()) {
?>
<option value="<?php echo($rsMailingDates->getColumnVal("MailingDate")); ?>">
<?php echo($rsMailingDates->getColumnVal("MailingDate")); ?></option>
<?php
$rsMailingDates->moveNext();
}
?>
</select>
Can you see any errors?