PHP RSS XML链接到Items并显示部分项目

时间:2013-10-21 19:25:53

标签: php xml rss blogger blogspot

我在这里努力学习RSS / XML代码。 我想阅读博主(blogspot)RSS提要。我的PHP知识是可以的,但也许这是我自己要问的问题。我希望你们比我聪明得多。

我已经有了一些代码:

项目代码

    <?php
$post = $_GET['post'];
$url = "http://mrexcelxl.blogspot.com/feeds/posts/default?alt=rss";
$rss = simplexml_load_file($url);


if (!isset ($post)) {
$items = $rss->channel->item;
foreach($items as $item)
{
$title = $item->title;
$link = $item->link;
$description = $item->description;
echo '<h3><u>'.$title.'</u></h3>';
echo '<p>'.$description.'</p>';
}


}

if (isset ($post)) {
$item = $rss->channel->item;

{
$title = $item->title;
$description = $item->description;
echo '<h3><u>'.$title.'</u></h3>';
echo '<p>'.$description.'</p>';
}
}



?>

菜单代码

 <?php  

// Show number of items  

$items = 10; 


// Load rss
$rss        = simplexml_load_file('http://mrexcelxl.blogspot.com/feeds/posts/default?alt=rss'); 


// show last items  
for($i=0;$i<$items;$i+=1)  
   { 
   echo "<a href=?post=" . $rss->channel->item[$i]->title . "> <h3>{$rss->channel->item[$i]->title}</a></h3></a><br>";  

   }  

?>

所以..我想: 在网页上显示大约250个10个项目,并带有“阅读更多”按钮。如果点击 - &gt;显示完整项目。 我想在菜单中显示所有项目。如果点击 - &gt;打开项目。

我很容易但是......但是没有......

0 个答案:

没有答案