Re: dynamic drop down list from the date field filtered to unique months



You should look up date() in the manual, for example:

<?php

echo date('F',strtotime('01')); //Prints January

echo date('m',strtotime('January')); //Prints 01

?>
.