📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
petshopscripti.demodesign.com.tr
📝
sayfa.php
← Geri Dön
<?php include "includes/header.php"; ?> <?php include "includes/head_ic.php"; ?> <?php $seo_url = $_GET['id']; $htmlsayfa = $db->prepare("select * from htmlsayfa where seo_url=:seo_url and dil=:dil and durum=:durum order by id "); $htmlsayfa->execute(array( 'seo_url' => $seo_url, 'dil' => $_SESSION['dil'], 'durum' => '1' )); $sayfa = $htmlsayfa->fetch(PDO::FETCH_ASSOC); ?> <?php $page_header_setting = $db->prepare("select * from page_header where page_id='htmlsayfa' order by id"); $page_header_setting->execute(); $pagehead = $page_header_setting->fetch(PDO::FETCH_ASSOC); ?> <?php if ($sayfa['seo_url'] == $_GET['id'] ) { ?> <title><?php echo $sayfa['baslik'] ?> | <?php echo $ayar['site_baslik']?></title> <meta name="description" content="<?php echo"$sayfa[meta_desc]" ?>"> <meta name="keywords" content="<?php echo"$sayfa[tags]" ?>"> <meta name="news_keywords" content="<?php echo"$sayfa[tags]" ?>"> <meta name="author" content="<?php echo"$ayar[site_baslik]" ?>" /> <meta itemprop="author" content="<?php echo"$ayar[site_baslik]" ?>" /> <meta name="robots" content="index follow"> <meta name="googlebot" content="index follow"> <meta property="og:type" content="website" /> <main class="main-content"> <!--== Start Page Header Area Wrapper ==--> <div class="page-header-area" data-bg-img="tema/img/photos/bg1.webp"> <div class="container pt--0 pb--0"> <div class="row"> <div class="col-12"> <div class="page-header-content"> <h2 class="title"><?php echo $sayfa['baslik'] ?></h2> <nav class="breadcrumb-area"> <ul class="breadcrumb"> <li><a href="index.html"><?php echo $diller['anasayfa'] ?></a></li> <li class="breadcrumb-sep">//</li> <li><?php echo $sayfa['baslik'] ?></li> </ul> </nav> </div> </div> </div> </div> </div> <!--== End Page Header Area Wrapper ==--> <section class="blog-area blog-inner-area"> <div class="container"> <div class="row justify-content-between flex-xl-row-reverse"> <h2><?php echo $sayfa['baslik'] ?></h2> <?php $icerik = $sayfa['icerik']; $eski = "../images"; $yeni = "images"; $icerik = str_replace($eski, $yeni, $icerik); ?> <?=$icerik?> </div> </div> </section> </main> <?php } else { ?> <script type='text/javascript'> document.location = 'index.php'; </script> <?php } ?> <?php include "includes/footer.php"; ?>
💾 Kaydet
İptal
📝 Yeniden Adlandır
İptal
Kaydet
🔐 Dosya İzinleri (chmod)
İzin Değeri:
Hızlı Seçim:
777
755
644
600
777
= Herkes okur/yazar/çalıştırır
755
= Sahip tam, diğerleri okur/çalıştırır
644
= Sahip okur/yazar, diğerleri okur
600
= Sadece sahip okur/yazar
İptal
Uygula