I've got several programs that use $dates=getdate(); to get a date string which is then broken down into day month year and re-assembled for various things. Now I'm getting the following error which according to the php doc is due to something new in php5 for timezones or some such.
It is not safe to rely on the system's timezone settings. Please use the date.timezone setting, the TZ environment variable or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'America/Denver' for 'MST/-7.0/no DST'
now I could care less about the timezone I'm just getting a date. The date is still showing up in the field where I put it.
I need a quick way to get rid of the error message I really don't want to have to change a dozen programs for a timezone that they aren't using anyway.
HELP