in variable $data['report_time']
it saving 00:00:14 tight now as per Indian time is 2:36 PM so Why it saving wrong time in the database please help me How can I resolve this error.
Codeigniter:
if(!$this->input->is_ajax_request()){
show_404();
}
else{
$data['address'] = $this->input->post("address");
$data['lat'] = $this->input->post("lat");
$data['long'] = $this->input->post("long");
$data['pet_id'] = $pet_id;
$data['user_id'] = $this->data['userdetails'][0]['id'];
$data['report_date'] = date("Y-m-d");
$data['report_time'] = date("H-i-s");
$table = 'pet_report';
$status = $this->Common_model->insert($table, $data);
echo $status;
}