Advertisement
Guest User

Untitled

a guest
Jul 15th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. <?php foreach($portfolio_kategorie as $kategorie): ?>
  2. <table class="table table-hover mb-5 pb-5">
  3. <div class="row">
  4. <div class="col-md-6"><h4><?php echo $kategorie->tytul; ?></h4></div>
  5. </div>
  6. <thead>
  7. <th class="wd-10p">Lp.</th>
  8. <th class="wd-20p">Zdjęcie</th>
  9. <th class="wd-60p">Kategoria</th>
  10. </thead>
  11. <tbody>
  12. <?php
  13. $tytul_no_spaces = str_replace(" ", "_", $kategorie->tytul);
  14. $tytul_t = strtolower($tytul_no_spaces);
  15. $i = 0;
  16. foreach($portfolio as $key) { if($tytul_t == $key->typ) {
  17. $kolejnosc_wyswietlania = $key->kolejnosc_wyswietlania;
  18. asort($kolejnosc_wyswietlania, $portfolio);
  19. ?>
  20. <tr>
  21. <td class="align-middle"><?php echo $key->kolejnosc_wyswietlania; ?></td>
  22. <td class="align-middle"><img src="<?php echo base_url(); ?>upload/<?php echo $key->zdjecie; ?>" style="max-height:200px;"></td>
  23. <td class="align-middle"><?php echo $key->typ; ?></td>
  24.  
  25. <td class="align-middle">
  26. <a href="<?php echo base_url(); ?>panel_admin/portfolio/delete/<?php echo $key->id; ?>" style="cursor: pointer;" class="ad_button"> Usuń</a>
  27. </td>
  28. </tr>
  29. <?php } $i++; } ?>
  30. </tbody>
  31. </table>
  32. <?php endforeach; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement