mirror of
https://github.com/ivuorinen/BassoFeed.git
synced 2026-01-26 11:34:01 +00:00
11 lines
258 B
PHP
11 lines
258 B
PHP
<?php
|
|
header('Content-Type: text/calendar; charset=utf-8');
|
|
date_default_timezone_set('Europe/Helsinki');
|
|
|
|
require_once("simple_html_dom.php");
|
|
require_once("bassofeed.php");
|
|
|
|
#echo "<pre>";
|
|
$basso_alas = new BassoFeed('alas');
|
|
echo $basso_alas->get_ical();
|