| Server IP : 103.234.187.230 / Your IP : 216.73.216.216 Web Server : Apache System : Linux lserver42043-ind.megavelocity.net 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64 User : apache ( 48) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/rsdgroup/ |
Upload File : |
<?php
include_once("conf/settings.php");
include_once("conf/func.php");
$getAlbum = getAlbum();
//echo "<pre>";print_r($getAlbum);die;
?>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Photo Gallery | Ananda</title>
<link rel="stylesheet" href="css/style.css">
<script type="text/javascript" src="js/jquery-1.4.4.min.js"></script>
<!--[if lt IE 9]>
<script src="js/html5.js"></script>
<![endif]-->
<link rel="stylesheet" href="css/prettyPhoto.css" type="text/css" media="screen" title="prettyPhoto main stylesheet" charset="utf-8" />
<script src="js/jquery.prettyPhoto.js" type="text/javascript" charset="utf-8"></script>
</head>
<body>
<!--header start here-->
<?php include_once("inc/header.php"); ?>
<!--header end here-->
<!--section start here-->
<section>
<div class="braedcrumb"><a href="<?php echo @$baseurl; ?>">Home</a> > <span>Images</span></div>
<div class="ourPro">
<h3>Images</h3>
<div class="imgmain_box">
<?php
if(count($getAlbum) >0) {
$s=0;
foreach($getAlbum as $getAlbumList) {
?>
<div class="pics">
<?php
if($getAlbumList['imgs_count'] >0) {
$ss=1;
foreach($getAlbumList['imgs'] as $getAlbumImgList)
{
if($getAlbumList['imgs_count'] >1 && $ss != 1)
{
$img_hide_class = 'style="display:none;"';
}
else
{
$img_hide_class = 'style="display:block;"';
}
?>
<a href="cat_images/media/pics/<?php echo $getAlbumImgList['media']; ?>" rel="prettyPhoto[gallery<?php echo $s; ?>]" >
<img border="0" src="cat_images/media/pics/<?php echo $getAlbumImgList['media']; ?>" width="231" height="237" <?php echo $img_hide_class; ?>>
</a>
<?php
$ss++; } } ?>
<p><?php echo $getAlbumList['albumName'];?></p>
</div>
<?php $s++;
/*if(($s%4) == 0){
echo '<div class="cl"></div></div><div class="imgmain_box">';
} */
} } ?>
<div class="cl"></div>
</div>
</div>
<!--footer top start here-->
<?php include_once("inc/footer-top.php"); ?>
<!--footer top end here-->
</section>
<!--section end here-->
<!--footer start here-->
<?php include_once("inc/footer.php"); ?>
<!--footer end here-->
<script type="text/javascript" charset="utf-8">
$(document).ready(function(){
$("a[rel^='prettyPhoto']").prettyPhoto();
});
</script>
</body>
</html>