Possible Duplicate:
ICS timezone not working
I'm working on my calendar app and I have created a .ics file manually and also with PHP code
I have also succeeded to sync my calender with Google, outlook and iphone.
Now the problem is this : how to handle time zone my meetings have different time in time zone.
BEGIN:VTIMEZONE
TZID:UTC
BEGIN:STANDARD
DTSTART:19700101T000000
TZOFFSETFROM:-0400
TZOFFSETTO:+0500
TZNAME:PST
END:STANDARD
END:VTIMEZONE
BEGIN:VTIMEZONE
TZID:Etc/GMT
BEGIN:STANDARD
DTSTART:19700101T000000
TZOFFSETFROM:-0400
TZOFFSETTO:+0500
TZNAME:PST
END:STANDARD
END:VTIMEZONE
I have to set the time zone components for Pakistan.
Could you tell me what I have to change ?