GMT vs UTC dates

Viewed 12062

I have a calendar built in JavaScript that compares dates with PHP. The JavaScript date object is set using PHP, but, when I compare future dates, they appear to be out of sync.

PHP is set to GMT and JavaScript is set to UTC; how do these standards differ, and could this be causing the problem?

4 Answers

For computers, GMT is UTC+0 - so they are the equivalent.

Related