Просмотр файла foto_news_v.1.2/news/rss_news.php

Размер файла: 2.3Kb
  1. <?php
  2. #-----------------------------------------------------#
  3. # ********* WAP-MOTORS ********* #
  4. # Made by : VANTUZ #
  5. # E-mail : visavi.net@mail.ru #
  6. # Site : http://pizdec.ru #
  7. # WAP-Site : http://visavi.net #
  8. # ICQ : 36-44-66 #
  9. # Вы не имеете право вносить изменения в код скрипта #
  10. #-----------------------------------------------------#
  11. require_once"../template/start.php";
  12. require_once"../template/regglobals.php";
  13. require_once"../template/config.php";
  14. require_once"../template/functions.php";
  15. require_once"../template/antidos.php";
  16.  
  17. header("Content-type:application/rss+xml; charset=utf-8");
  18. echo '<?xml version="1.0" encoding="utf-8" ?>';
  19. echo '<rss version="2.0"><channel>';
  20. echo '<title>'.$config_title.' News</title>';
  21. echo '<link>'.$config_home.'</link>';
  22. echo '<description>Новости RSS - '.$config_title.'</description>';
  23. echo '<image><url>'.$config_logotip.'</url>';
  24. echo '<title>'.$config_title.' News</title>';
  25. echo '<link>'.$config_home.'</link></image>';
  26. echo '<language>ru</language>';
  27. echo '<copyright>'.$config_copy.'</copyright>';
  28. echo '<managingEditor>'.$config_emails.'</managingEditor>';
  29. echo '<webMaster>'.$config_emails.'</webMaster>';
  30. echo '<lastBuildDate>'.date(r,$sitetime).'</lastBuildDate>';
  31.  
  32.  
  33. $file = file("../local/news.dat");
  34. $file = array_reverse($file);
  35.  
  36. $total = count($file);
  37. if($total>15){$total=15;}
  38.  
  39. for ($i=0;$i<$total;$i++){
  40.  
  41. $data = explode("|",$file[$i]);
  42.  
  43. $data[1]=bb_code($data[1]);
  44. $data[1]=str_replace('../images/smiles',$config_home.'/images/smiles',$data[1]);
  45. $data[1]=htmlspecialchars($data[1]);
  46.  
  47.  
  48. //list($uday, $umonth, $uyear) = explode(".", $data[2]);
  49. //list($uhour, $umin) = explode(":", $data[3]);
  50. //$usecond = mktime($uhour,$umin,'0',$umonth,$uday,$uyear);
  51.  
  52. echo '<item><title>'.$data[0].'</title><link>'.$config_home.'/news/komm.php?id='.$data[5].'</link>';
  53. echo '<description>'.$data[1].' </description><author>'.$data[4].'</author>';
  54. echo '<pubDate>'.date(r,$data[3]).'</pubDate><category>Новости</category><guid>'.$config_home.'/news/komm.php?id='.$data[5].'</guid></item>';
  55. }
  56.  
  57. echo '</channel></rss>';
  58. ?>