Here's an example of what does not work:
<code>
$today = date("F j, Y, g:i a", mktime(0,0,0,7,22,1965));
echo "$today";
</code>
If you put in a year of 1970 or later, it works fine. Put in 1969 or earlier and you get an error. When I do get similar code to run, the only response on a date prior to 1/1/1970 is "-1". If I try to output the result into a normal date output, I always get just "12/31/1969", or what should be a date of "-1" in Unix speak.
I assume that dates prior to 1/1/1970 result in negative numbers. Why I can't get the code to go beyond -1 is a mystery to me.
HELP!