Code: Select all
BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//hacksw/handcal//NONSGML v1.0//EN
CALSCALE:GREGORIAN
BEGIN:VEVENT
LOCATION:123 Fake St\, New York\, NY
DESCRIPTION:This is my description
DTSTART:20201116T090000Z
DTEND:20201116T100000Z
SUMMARY:This is my summary
URL;VALUE=URI:http://example.com
DTSTAMP:20201115T144749Z
UID:5fb13f9575027
END:VEVENT
END:VCALENDAR
Code: Select all
BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//hacksw/handcal//NONSGML v1.0//EN
CALSCALE:GREGORIAN
BEGIN:VEVENT
LOCATION:123 Fake St\, New York\, NY
DESCRIPTION:This is my description
DTSTART:20201116T090000Z
DTEND:20201116T100000Z
SUMMARY:This is my summary
URL;VALUE=URI:http://example.com
DTSTAMP:20201115T144749Z
UID:5fb13f9575027
END:VEVENT
END:VCALENDAR
Code: Select all
header('Content-Type: text/calendar; charset=UTF-8');
header('Content-Disposition: attachment; filename=ics.ics');echo ".";die();
