I do an insert into a table with value of CURTIME() and it puts in the (?server current time I guess?)...
I then do a php statement to return the current time
$time = date("H:i:s");
These 2 times are different, by about 19 hours actually...I am using a host service, not my own web server, so I would guess that the option of resetting the time on 1 end or the other would be out of the question...
Is there a way to get the current time from the MySql server. That way if 30 minutes has elapsed since the insert and the present time, it will actually be 30 minutes and not 19 hours,30 minutes.
Thanks