Tag Archives: date

PHP date essentials

In my projects, I’m always using dates, but to make life easier, I’ve composed a list of the dates I use to help reference by name rather than by the code. <?php $today = strtotime(‘today’); $yesterday = strtotime( ‘-1 days’ … Continue reading

Posted in Code | Tagged , | Leave a comment

Convert month name to a number

For the longest time, I’ve always come across this barrier. No pun intended. I wish there was an easier way to convert the month name to a number, but after searching, I came across this thanks to doodlebee from webmasterworld. … Continue reading

Posted in Code | Tagged , , , , , | Leave a comment