Advertisement
Guest User

Untitled

a guest
Dec 21st, 2014
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. include 'safe/DAL.php';
  2. $feedback = getAllCups();
  3. if ($feedback != "Error.") {
  4. for ($x = 0; $x < count($feedback); $x++) {
  5. $tmp_cup = $feedback[$x];
  6. echo '<a href="#" class="list-group-item">';
  7. echo '<h4 class="list-group-item-heading">';
  8. echo $tmp_cup->getCupName() . ', ' . $tmp_cup->getYear();
  9. echo '</h4>';
  10. echo '<p class="list-group-item-text">Vinnare: Inte avslutad ännu</p>';
  11. echo'</a>';
  12. }
  13. } else {
  14. echo '<a href="#" class="list-group-item">';
  15. echo'<h4 class="list-group-item-heading">Inga cuper hittades</h4>';
  16. echo'</a>';
  17. }
  18.  
  19. error_reporting(E_ALL);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement