Finding the month, day, and year
<?php $a = getdate(); printf('%s %d, %d',$a['month'],$a['mday'],$a['year']); ?>