Advertisement
Guest User

Untitled

a guest
Oct 16th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. <?php while($vetor = mysqli_fetch_array($sql_imagens)) { ?>
  2. <div class="col-md-4 w3_agile_gallery_grid">
  3.  
  4. <div class="agile_gallery_grid">
  5. <a title="Imagem" href="uploads/<?php echo $vetor['imagem']; ?>">
  6. <div class="agile_gallery_grid1">
  7. <img src="uploads/<?php echo $vetor['imagem']; ?>" alt=" " class="img-responsive" />
  8. </div>
  9. </a>
  10. </div>
  11.  
  12. </div>
  13. <div class="clearfix"></div>
  14. <?php } ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement