I have my server in America/Chicago, I am posting current time with data in one of my filed qu_time. I am from India,so I need Asia/Kolkata as timezone for insert current time in my database. I have tried many from stackflow but I am not success, Can anyone please suggest me what should I do for it ? My current query is like below
$upd_qry = "update tbl_quotes
set qu_status='".$_GET['status']."', qu_time=NOW()
where _quid='".$_GET['quotes_id']."'";
$result=mysqli_query($mysqli,$upd_qry);
Thanks