D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
proc
/
thread-self
/
root
/
home
/
shubmkcj
/
praneshaswalphotography.com
/
Filename :
index.php
back
Copy
<?php include "include/config.php"; include "include/header.php"; ?> <section style="background-color: #f2f2f2;"> <div class="container container-padding" > <div id="mygallery" class=" justified-gallery"> <?php $photo = mysqli_query($conn,"select * from photos order by id desc limit 15"); while($row = mysqli_fetch_assoc($photo)){ ?> <a href="<?php echo $base_url;?>category/<?php echo create_slug($row['category']);?>/<?php echo base64_encode($row['id']); ?>" class="figure"><img src="<?php echo $img_url.$row['image'] ?>" ></a> <?php } ?> </div> </div> </section> <?php include "include/footer.php"; ?>