I have a month value (1-12), day value (1-31), and a year value (2010,2011,2012). I also have a hour value and a minute value.
How can I give this to strtotime()>
strtotime()>
Is strtotime the best tool for this job? What about mktime()?
strtotime
$time = mktime($hour, $minute, 0, $month, $day, $year);