Reputation: 1235
Hope somebody could help me out, I am trying to find a solution for exporting an Outlook Calendar onto a webpage on weekly basis or for amendments.
I know Outlook is capable of exporting a calendar into ICS and CSV files was wondering if there are any products out there that will take me at least half way there.
I have some experience with PHP and JS so feel confident enough to do some modification but it needs to at least import and parse the files.
I have had a look around on the web and found a few tools but nothing as specific as what im looking for.
Any advice would be appreciated.
Thanks
Upvotes: 0
Views: 1254
Reputation: 4775
for icalendar compatibility and rendering I could only recomend phpicalendar .
Upvotes: 0
Reputation: 1982
Well I think you probably had better to write the import by yourself.
These could be the steps:
Here just a snippet of code that shows ho easily is to manage csv file in php
<?php
$row = 1;
if (($handle = fopen("test.csv", "r")) !== FALSE) {
while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) {
$num = count($data);
echo "<p> $num fields in line $row: <br /></p>\n";
$row++;
for ($c=0; $c < $num; $c++) {
echo $data[$c] . "<br />\n";
}
}
fclose($handle);
}
?>
Upvotes: 1