B
|
bertoruiz author 7/13/2011 |
$myTimeZONE_var=$_SESSION['setting_timezone_session']; // I saved the TimeZone from a table into a Session and then saved it in this local variable echo $myTimeZONE_var; //this shows exactly the folowwing: 'America/New_York' date_default_timezone_set($myTimeZONEvar); // I get the following error: // Error type 8 // Error description date_default_timezone_set() [function.date-default-timezone-set]: Timezone ID ''America/New_York'' is invalid
|