Every time in PHP when I make a variable such as this one:
$date = strtotime($row['date']);
$date = date("M d Y \a\\t g:i A", $date); // Mmm dd YYYY at h:mm PM/AM
and somehow row['date']
happens to be 0, the date Dec 31 1969 at 7:00 PM
is displayed on the screen? Google does not tell me much, I was wondering if this date had any significances.