Wpisuje w kodzie takie cos:
<?php include("rs.php"); ?>
i nie wyswietla mi zawartosci...
Zawartosc czytnika rss:
<?php /* +--------------------------------------------------+ | Author: Allan Irvine <ai@ayrsoft.com> | +--------------------------------------------------+ | Date: WED 03 MARCH 2004 | +--------------------------------------------------+ | Origin: Scotland, United kingdom | +--------------------------------------------------+ | Script: newsReader.php | +--------------------------------------------------+ | No License | | free to use for personal and commercial purposes | +--------------------------------------------------+ */ //+++++++++++++++++++++++++++++++++++++++++++++++++++ // CHANGES //--------------------------------------------------- // Added a property $ampReplace, this is a quick fix // it is used to replace ampersands bfore php get a hold of // the rss file, and replace it once PHP has dealt with it // I was getting lines split by an ampersand, pointed out by // Mathew Clark of Divergent Systems, cheers. // I will need to address this later on as I deem this fix // as a bit of a kludge, not nice. // Allan Irvine <airvine@ayrsoft.com> // 29th April 2004 //---------------------------------------------------- // //++++++++++++++++++++++++++++++++++++++++++++++++++++ class newsReader{ var $currentTag; var $rss; var $level; var $startCollecting; var $wantedElements; var $cacheData; var $ampReplace; function newsReader(){ $this->rss = xml_parser_create(); xml_set_object($this->rss, $this); xml_parser_set_option($this->rss,XML_OPTION_CASE_FOLDING,1); xml_set_element_handler($this->rss,_startElement,_endElement); xml_set_character_data_handler($this->rss,_parseData); } function _findLevel($n){ $this->level = $regs[0]; } } function _startToCollect($n){ } function _startElement($t,$name,$attribs){ $this->currentTag = $name; $this->_findLevel($name); $this->_startToCollect($name); if($this->startCollecting){ $this->openTag[]="<tr><td>n"; } } function _endElement($t,$name){ if($this->startCollecting) $this->closeTag[]="</td></tr>n"; } function _parseData($t,$cData){ $this->content[]="<A HREF="".$cData."" TARGET="_BLANK">".$cData."</A>n"; $this->content[]="<IMG SRC="".$cData."">n"; }else{ $this->content[]=$cData; } } } function readNewsFeed($source){ $this->_readCacheData(); if($this->_useCache($source)){ $this->_writeCacheEntry($source); }else{ } if(!xml_parse($this->rss,$file,1)){ $ln = xml_get_current_line_number($this->rss); $msg = xml_error_string(xml_get_error_code($this->rss)); return ("An XML error occurred on line $ln: $msg"); }else{ $rtn = "<TABLE border=0>n"; for($i=0;$i<count($this->openTag);$i++){ $rtn.= $this->openTag[$i].$this->content[$i].$this->closeTag[$i]; } $rtn.="</TABLE>n"; if(!$this->_useCache($source)){ $this->_writeCacheEntry($source); } return $rtn; } } function _checkCacheDir(){ } } function _readCacheData(){ } } function _useCache($source){ return 0; }else{ return 1; } }else{ return 0; } } function _writeCacheEntry($source){ $this->_checkCacheDir(); $this->_updateCacheArray($source); } function _updateCacheArray($source){ foreach($this->cacheData as $key=>$val){ } $new[$key]= $val; } $this->cacheData = $new; }else{ } } } //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% //&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& //$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ // //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ // test data below once you are happy how it works just remove this stuff //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ // bbc news stories $newsSources['Dzielnica Smolna']['Smolna']="http://smolna.rybnik.pl/smolna_rss.xml"; ?> <style type=text/css><!-- td { font-family:arial,verdana,tahoma; font-size:12px; background-color:#f0f0f0; color:#000000; } --></style> <?php foreach($newsSources as $name=>$array) //++++++++++++++++ // script usage | //++++++++++++++++ #$source = "http://www.newscientist.com/syndication/news.rdf"; #$go = 1; if($go){ $feed = new newsReader; } ?>