What\'s going on with strtotime here?
$today = date(\'m.d.y H:i\', time()); echo strtotime($today);
It does not output anything... What\'s
strtotime works with US dates. Try
strtotime
$today = date('m/d/y H:i', time()); echo strtotime($today);