Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- $feedURL = 'http://www.eed.usv.ro/news/backend.php';
- $root = simplexml_load_file($feedURL);
- $feed = array();
- $items = array();
- $feed['title'] = $root->channel->title;
- $feed['link'] = $root->channel->link;
- $i=0;
- foreach($root->channel->item as $item){
- $items[$i++] = array(
- 'title' => $item->title,
- 'link' => $item->link,
- 'description' => $item->description
- );
- }
- for($i=0;$i<count($items);$i++){
- echo '</br><a href="'.$items[$i]['link'].'">'. $items[$i]['title'].'</a>';
- }
- ?>
- ----------------------------------------------------------------------------------------------------------
- <meta charset="UTF-8" />
- <?php
- $feedURL = 'http://fede.ro/feed/';
- $root = simplexml_load_file($feedURL);
- $feed = array();
- $items = array();
- $feed['title'] = $root->channel->title;
- $feed['link'] = $root->channel->link;
- $i=0;
- foreach($root->channel->item as $item){
- $items[$i++] = array(
- 'title' => $item->title,
- 'link' => $item->link,
- 'description' => $item->description,
- 'comments' => $item->comments,
- 'pubDate' => $item->pubDate,
- 'guid' => $item->guid
- );
- }
- echo '<table>';
- for($i=0;$i<count($items);$i++){
- echo '<tr>';
- echo '<td><a href="'.$items[$i]['guid'].'">'.$items[$i]['title'].'</a></td>';
- echo '</tr>';
- echo '<tr>';
- echo '<td>'.$items[$i]['description'].'</td>';
- echo '</tr>';
- }
- echo '</table>';
- ?>
Advertisement
Add Comment
Please, Sign In to add comment