Real life problems solved

Advert

strtotime with UK date

Had a problem today where using strtotime was not working with UK Dates DD/MM/YY

Using the following code though fixed it:

$date = '25/08/2010';
$date = str_replace('/', '-', $date);
echo date('Y-m-d', strtotime($date));
Adsense