Hi, I was wondering how I could get mktime to use the current hour, minute, and second but specify a day, month, and year
<?php $hms = explode(":",date("g:i:s",time())); $my_month = 07; echo date("F d Y g:i:sA", mktime($hms[0],$hms[1],$hms[2],$my_month,1,2007)); ?> Code (markup):