tuxmartin

RSS pro http://goo.gl/p0Qa99

Aug 19th, 2013
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.57 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: application/rss+xml; charset=utf-8');
  5. header("Cache-Control: no-store, no-cache, must-revalidate");
  6. header("Pragma: no-cache");
  7.  
  8. $vypsat = "Hello, world!";
  9. ?>
  10. <rss version="2.0">
  11.   <channel>
  12.     <title></title>
  13.     <link></link>
  14.     <description></description>
  15.     <pubDate><?php echo gmdate("D, d M Y H:i:s")." GMT";  ?></pubDate>
  16.     <item>
  17.        <title><?php echo $vypsat?></title>
  18.     </item>
  19.   </channel>
  20. </rss>
Add Comment
Please, Sign In to add comment