tuxmartin

RSS pro teplomer

Jan 17th, 2013
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.18 KB | None | 0 0
  1. <?php
  2. header('Expires: ' . gmdate('D, d M Y H:i:s') . '  GMT');
  3. header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . '  GMT');
  4. header('Content-Type: text/xml; charset=utf-8');
  5. header("Cache-Control: no-store, no-cache, must-revalidate");
  6. header("Pragma: no-cache");
  7. ?>
  8. <rss version="0.91">
  9.     <channel>
  10.         <title>Teplota v Jicine</title>
  11.         <link>http://example.net/jicin-teplota/</link>
  12.         <description>Teplota v Jicine aktualizovana kazdych 10 minut. Je ziskavana z teplomeru na adrese http://teplomer.jicin.cz/</description>
  13.         <language>cs</language>
  14.         <image>
  15.             <url>http://teplomer.jicin.cz/images/favicon.ico</url>
  16.             <title>Teplota v Jicine</title>
  17.             <link/>
  18.         </image>
  19.         <item>
  20.             <title><?php echo( file_get_contents('./aktualni-teplota-v-jicine.txt') . " °C" ); ?></title>
  21.             <link>http://teplomer.jicin.cz/</link>
  22.             <description><?php echo( file_get_contents('./aktualni-teplota-v-jicine.txt') . " °C" ); ?></description>
  23.             <pubDate><?php echo gmdate("D, d M Y H:i:s")." GMT";  ?></pubDate>
  24.         </item>
  25.     </channel>
  26. </rss>
  27.  
  28. <?php
  29. /*
  30. Na Androidu:
  31. https://play.google.com/store/apps/details?id=de.j4velin.rssWidget
  32. https://dl.dropbox.com/u/6943408/teplomerRSS.png
  33. */
  34. ?>
Advertisement
Add Comment
Please, Sign In to add comment