Jump to content

Recommended Posts

i'm grabbing the rss feeds from this site: http://www.markwarner2008.com/feed/blog/index.xml

 

view the page source of that file... its weird... some stories have the xml tag of "summary" but others don't, yet they all have a text summarry.

 

here's what i'm getting:

http://snapps.f-sw.com/mark2008/rss/reader/

 

so how would i display all the stories, though some don't have a "summary" tag

 

 

php code is below......

 

<?php
require_once 'rss_fetch.inc';
$url = 'http://www.markwarner2008.com/feed/blog/index.xml';
$rss = fetch_rss($url);

$max = 80;
$x = 0;
foreach ($rss->items as $item ) {

if($max <= $x){
//do nothing
}else{
$title = $item['title'];
$url = $item['link'];
$summary = $item['summary'];
$content = $item['content'];

print_r($a);

$author = $item['name'];

$summary = substr($summary, 400);
$summary = $summary."...";





echo "<a href='$url'>$title</a><br>Summary:$summary.<br>$content<br>";
}
//$x++;
}

echo "Done!";
?>

Link to comment
https://forums.phpfreaks.com/topic/120636-solved-rss-and-php/
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.