View Single Post
Old 02-12-2012, 08:24 PM  
Tube Ace
So Fucking Banned
 
Industry Role:
Join Date: Nov 2008
Location: with your dream girl
Posts: 4,941
PHP Code:
<?php

$feedURL 
"http://rss.cnn.com/rss/cnn_topstories.rss";

$xml simplexml_load_file($feedURL);
    
foreach (
$xml->channel as $record){
    
    
$title $record->title
    
$link =  $record->link
    
$description $record->description;
    
$image_url $record->image->url;
    
    echo 
"<a href=\"$link\">$title</a>";
    echo 
"<br /><img src=\"$image_url\">";
    
}

foreach (
$xml->channel->item as $record){
                    
    
$title $record->title
    
$link $record->link;      
    
$description $record->description;   
    
$pubDate $record->pubDate;   
    
    echo 
"<br /><br /><a href=\"$link\">$title</a> $pubDate";
    echo 
"<br />$description";

}

?>
Tube Ace is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote