mirror of
https://github.com/ivuorinen/BassoFeed.git
synced 2026-01-26 03:23:59 +00:00
13 lines
301 B
PHP
13 lines
301 B
PHP
<?php
|
|
header('Content-Type: text/html; charset=utf-8');
|
|
date_default_timezone_set('Europe/Helsinki');
|
|
|
|
echo "<pre>";
|
|
require_once("bassofeed.php");
|
|
|
|
// http://simplehtmldom.sourceforge.net/manual.htm
|
|
require_once("simple_html_dom.php");
|
|
|
|
$basso_alas = new BassoFeed('helsinki');
|
|
print_r($basso_alas);
|