📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
petshopscripti.demodesign.com.tr
📝
video-icerik.php
← Geri Dön
<?php include "includes/header.php"; ?> <?php include "includes/head_ic.php"; ?> <?php $page_header_setting = $db->prepare("select * from page_header where page_id='video' order by id"); $page_header_setting->execute(); $pagehead = $page_header_setting->fetch(PDO::FETCH_ASSOC); ?> <?php $vid_id = $_GET['vid_id']; $videolar = $db->prepare("select * from video where id=:id and durum=:durum and dil=:dil"); $videolar->execute(array( 'id' => $vid_id, 'durum' => '1', 'dil' => $_SESSION['dil'] )); $video = $videolar->fetch(PDO::FETCH_ASSOC); $etiketler = $video['tags']; $etiketler = explode(',', $etiketler); $video_hits = $db->prepare("UPDATE video SET hit = hit+1 WHERE id=:id "); $video_hits->execute(array( 'id' => $vid_id )); ?> <?php if($videolar->rowCount() == 0) { header('Location:'.$siteurl.''); exit; } ?> <title><?php echo ucwords_tr($video['baslik']) ?> | <?php echo $ayar['site_baslik']?></title> <meta name="description" content="<?php echo"$video[meta_desc]" ?>"> <meta name="keywords" content="<?php echo"$video[tags]" ?>"> <meta name="news_keywords" content="<?php echo"$video[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 ucwords_tr($video['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 ucwords_tr($video['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"> <?php if($video['embed'] ==!null) {?> <div class="col-lg-12 col-sm-12 wow fadeInUp text-center" data-wow-duration="1s"> <?=$video['embed']?> </div> <?php } else { ?> <div class="alert alert-secondary" role="alert"> <?php echo $diller['embed'] ?> </div> <?php }?> </div> </div> </section> </main> <?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