$iCal->addEvent(
'', // Organizer
1048806000, // Start Time (timestamp; for an allday event the startdate has to start at YYYY-mm-dd 00:00:00)
1048899000, // End Time (write 'allday' for an allday event instead of a timestamp)
'Vienna', // Location
0, // Transparancy (0 = OPAQUE | 1 = TRANSPARENT)
$categories, // Array with Strings
'See homepage
for more details...', // Description
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I am having some problems creating multiline descriptions. What format should I use.
For example,
$desc = "aaa\nbbb\nccc";
Will that display the description in the calendar in three lines.
Any help in this area would be helpful.
Great class.
--joubert
should work if you just use a line break.
for example:
$iCal->addEvent(
'', // Organizer
1048806000, // Start Time (timestamp; for an allday event the startdate has to start at YYYY-mm-dd 00:00:00)
1048899000, // End Time (write 'allday' for an allday event instead of a timestamp)
'Vienna', // Location
0, // Transparancy (0 = OPAQUE | 1 = TRANSPARENT)
$categories, // Array with Strings
'See homepage
for more details...', // Description