Advertisement
Guest User

Untitled

a guest
Dec 18th, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.43 KB | None | 0 0
  1.  if(isset($_POST['seeNews'])) {
  2.         foreach (fetch_news("http://feeds.bbci.co.uk/news/rss.xml") as $article) {
  3.             ?>
  4.             <h1><a href="<?php echo $article['link'] ?>"><?php echo $article['title']; ?></a></h1>
  5.             <img id="newsImg" src="<?php echo $article['image']['url']; ?>" alt=""/>
  6.             <p>
  7.                 <?php echo $article['description']; ?>
  8.             </p>
  9.             <?php
  10.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement