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()>
Y-m-d hh:mm will work
Y-m-d hh:mm
echo strtotime('2011-12-14 11:44 am');
cit @Pekka :)