Situation:
My server uses redhat linux and time_t seems to only hold a number that reaches from 1970-2038. This could be a problem if I want to have people fill out any date that was before 1970. Actually it could be a crippling problem. All of the times in my script all use Unixtime and will thusly behave strangely when somebody makes a time before 1970. This brings me to the problem.
Problem:
All over my script I use this time format. Is there a way to modify time_t on my system (or host's system) to be a 32bit integer or modify it on PHP's settings it would possibly help me out so much. Or maybe a way to process the time myself.
Ultimate Question:
What would you do in this situation?
Thank you so much for your time.
Your fellow PHP programmer,
Mike Riehl