Advertisement
SashaRaaa

Untitled

Jul 25th, 2018
1,736
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <html>
  2. <title></title>
  3. <h1>Новости</h1>
  4.  
  5. <?php
  6.  
  7. $news = $this->data['news'];
  8.  
  9. foreach ($news->getNews() as $id=>$record) {
  10.  
  11. ?>
  12.  
  13.     <h2><a href="/article.php?id=<?php echo $id ?>"><?php echo $record->getHeader(); ?> </a></h2>
  14. <article> <?php echo $record->getShortMessage(); ?> </article>
  15. <hr>
  16. <?php
  17. }
  18. ?>
  19.  
  20.  
  21.  
  22. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement