Advertisement
joserobertocordeiro

Untitled

Dec 21st, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 KB | None | 0 0
  1. <?php require 'pages/header.php'; ?>
  2. <?php
  3. if(empty($_SESSION['cLogin'])){
  4. ?>
  5. <script type="text/javascript">window.location.href="login.php";</script>
  6.  
  7. <?php
  8. exit;
  9. }
  10.  
  11. ?>
  12. <div class="container">
  13. <h1>Meus anuncios </h1>
  14.  
  15. <a href="add-anuncio.php" class="btn btn-default">Adicionar anuncio</a>
  16.  
  17. <table class="table table-striped">
  18. <thead>
  19. <tr>
  20. <th>Foto</th>
  21. <th>Titulo</th>
  22. <th>Valor</th>
  23. <th>Ações</th>
  24. </tr>
  25. </thead>
  26. <?php
  27. require 'classes/anuncios.class.php';
  28. $a = new Anuncios();
  29. $anuncios = $a->getMeusAnuncios();
  30.  
  31. foreach($anuncios as $dados) {
  32. ?>
  33.  
  34. <tr>
  35. <td>
  36. <?php if(!empty($anuncio['url'])): ?>
  37. <img src="assets/images/anuncios/<?php echo $anuncio['url']; ?>" height="100" border="0" />
  38. <?php else: ?>
  39. <img src="assets/images/default.jpg" height="100" border="0" />
  40. <?php endif; ?>
  41.  
  42.  
  43. </td>
  44. <td><?php echo $dados['titulo']; ?></td>
  45. <td>R$ <?php echo number_format($dados['valor'], 2); ?></td>
  46. <td>
  47. <a href="editar-anuncio.php?id=<?php echo $anuncio['id']; ?>" class="btn">Editar</a>
  48. <a href="excluir-anuncio.php?id=<?php echo $anuncio['id']; ?>" class="btn">Excluir</a>
  49. </td>
  50. </tr>
  51. <?php } ?>
  52. </table>
  53. </div>
  54.  
  55. <?php require 'pages/footer.php'; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement