Cleared upload_data , commented out "gallery" feature, commented out jabber from...
[mirrors/Kyberia-bloodline.git] / wwwroot / inc / rssparse.php
1 <?php
2 // include lastRSS library
3 include './lastRSS.php';
4
5 // create lastRSS object
6 $rss = new lastRSS;
7
8 // setup transparent cache
9 $rss->cache_dir = './cache';
10 $rss->cache_time = 3600; // one hour
11
12 // load some RSS file
13 // XXX
14 if ($rs = $rss->get('http://h-k.sk/scripts/google2rss.php?num=15&q=smallpox')) {
15
16 print_r($rs);
17 }
18 else {
19 die ('Error: RSS file not found...');
20 }
21
22 ?>
23
This page took 0.271335 seconds and 4 git commands to generate.