There is another solution besides adding the timezone offset to make it GMT. Look-up the function gmdate(); gmdate() gives you the time in GMT rather than in the server time. From the Vizionz' XML, replace
PHP Code:
$ng_gmt = date('G') + 6; // add + or - and the difference between the server and GMT. My time zone is GMT-6 so I add 6
with
PHP Code:
$ng_gmt = gmdate('G'); #get the time in GMT
and it should work just as fine as adding the timezone offset to the time.