I have a web server account that's running MySQL 4.0.22-standard. I have a table with a $DateLong field of type "date" that has dates before 1970. I need to find the day of the week for these dates, which works for the most part with date('D',strtotime($DateLong)). But strtotime() always returns a -1 for pre-1970 dates. Thanks!