Advertisement
Guest User

Untitled

a guest
Feb 24th, 2020
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <?php
  2. require_once'classes/Connection.php';
  3. require_once'classes/Story.php';
  4.  
  5. try{
  6. $stories = Story::selectAll();
  7. }
  8. catch(Exception $e){
  9. die("Exception: " . $e->getMessage());
  10. }
  11.  
  12. /*echo '<pre>';
  13. var_dump($stories[3]-> headline);
  14. echo '</pre>';*/
  15.  
  16. foreach ($stories as $story){ ?>
  17. <h4><?=$story -> headline; ?></h4>
  18. <h6><?=$story -> subHeading; ?></h6>
  19. <div><?=$story -> article; ?></div>
  20. }
  21.  
  22. <?php } ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement