HOME SHELL

NULLCOMMUNITY
 LiteSpeed
 Linux server2.poyrazhosting.com 3.10.0-962.3.2.lve1.5.77.el7.x86_64 #1 SMP Mon Dec 12 07:06:14 EST 2022 x86_64
 safemode : OFF
 MySQL: OFF | Perl: OFF | cURL: ON | WGet: OFF
  >  / home / cuneytsener53 / kurumsal16.snrsoft.com.tr /

Server Ip : 172.67.216.244




Filename/home/cuneytsener53/kurumsal16.snrsoft.com.tr/gallerypage.php
Size2.17 kb
Permissionrw-r--r--
Owner
Create time02-Mar-2025 05:46
Last modified10-Oct-2022 13:58
Last accessed04-Apr-2025 07:40
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
<?php
  $getPostAsk
->execute(array(
    
'seo_url'    => $_GET["seo_url"],
    
'post_type'  => 'post_Gallery'
  
));
  
$postDataCheck=$getPostAsk->fetch(PDO::FETCH_ASSOC);
?>
        <section class="page-header">
            <div class="page-header-bg" style="background-image: url(<?php echo $postDataCheck['banner']; ?>)">
            </div>
            <div class="container">
                <div class="page-header__inner">
                    <ul class="thm-breadcrumb list-unstyled">
                        <li><a href="<?php echo $generalSettingCheck['site_url']; ?>"><?php echo $langArray['LINK_HOME']; ?></a></li>
                        <li><span>/</span></li>
                        <li><?php echo $postDataCheck['title']; ?></li>
                    </ul>
                    <h2><?php echo $postDataCheck['title']; ?></h2>
                </div>
            </div>
        </section>
         <section class="gallery-page">
            <div class="container">
                <div class="row">
                  <h2><?php echo $postDataCheck['title']; ?></h2>
                  <p><?php echo $postDataCheck['content']; ?></p><br>
                    <?php
           $typeandid 
'image_gallery-'.$postDataCheck['post_id'];
           
$allMediaAsk->execute(array(
             
'gallery_type_id'        => $typeandid
           
));
           while (
$allTypeCheck=$allMediaAsk->fetch(PDO::FETCH_ASSOC)){
        
?>
                    <div class="col-xl-4 col-lg-6 col-md-6">
                        <!--Gallery Page Single-->
                        <div class="gallery-page__single">
                            <div class="gallery-page__img">
                                <img src="<?php echo $allTypeCheck['media_medium']; ?>" alt="<?php echo $documentCheck['name']; ?>">
                                <div class="gallery-page__icon">
                                    <a class="img-popup" href="<?php echo $allTypeCheck['media_large']; ?>"><span class="icon-plus-symbol"></span></a>
                                </div>
                            </div>
                        </div>
                    </div>
             <?php ?>
                </div>
            </div>
        </section>