Need help in retrive date format with am/pm in codeignitor
- by JigneshMistry
I have got one problem. which is as follow
I have converted date to my local time as below
$this->date_string = "%Y/%m/%d %h:%i:%s";
$timestamp = now();
$timezone = 'UP45';
$daylight_saving = TRUE;
$time = gmt_to_local($timestamp, $timezone, $daylight_saving);
$this->updated_date = mdate($this->date_string,$time);
And Storing…