When I post to MySQL the datetime is about 3 hrs behind. Where is my issue? I want the user to post in their timezone, too.
Here is an example...
$user_logs_update4 = array( "ID" => $primary_key, "LastUpdate" => date('Y-m-d H:i:s')); $this->db->update('table',$user_logs_update4,array('ID' => $primary_key));
Need some help on this one. I am a beginner in PHP. I would need detailed instructions.