📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
reklamtabelascripti.demodesign.com.tr
📝
hizmetler.php
← Geri Dön
<?php define("GUVENLIK",true);?> <?php include("panel/system/ayar.php"); include("panel/system/fonksiyon.php"); ?> <?php if(empty ($_GET["seosayfa"])) { ?> <meta http-equiv="refresh" content="0;URL='<?php echo $ayar->base_url ?>'" /> <?php } else { $gelen_seo = $_GET["seosayfa"]; $Sorguvarmi = Sorgu("SELECT * FROM hizmetler where seo='$gelen_seo'"); if($var = Sonuc($Sorguvarmi)) { $adi = $var->adi; $resim = $var->resim; $aciklama = $var->aciklama; $keywords = $var->keywords; $seo = $var->seo; $kisa = $var->description; }else {?> <meta http-equiv="refresh" content="0;URL='<?php echo $ayar->base_url ?>'" /> <?php } }; ?> <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title><?php echo $adi ?> • <?php echo $ayar->site_title; ?></title> <meta name="keywords" content="<?php echo $keywords; ?>"> <meta name="description" content="<?php echo $aciklama; ?>"> <link href="<?php echo $ayar->base_url; ?>css/bootstrap.css" rel="stylesheet"> <link href="<?php echo $ayar->base_url; ?>css/style.css" rel="stylesheet"> <link href="<?php echo $ayar->base_url; ?>css/responsive.css" rel="stylesheet"> <link href="<?php echo $ayar->base_url; ?>css/color-switcher-design.css" rel="stylesheet"> <link id="theme-color-file" href="<?php echo $ayar->base_url; ?>css/orange-theme.css" rel="stylesheet"> <link rel="shortcut icon" href="<?php echo $ayar->base_url ?>uploads/logo/<?php echo $ayar->firma_favicon; ?>"/> <link rel="icon" href="?php echo $ayar->base_url ?>uploads/logo/<?php echo $ayar->firma_favicon; ?>" type="image/x-icon"> <link rel="canonical" href="<?php echo $ayar->base_url ?>Anasayfa" /> <meta name="robots" content="ALL"/> <meta name="author" content="<?php echo $ayar->site_title; ?>"> <meta name="dc.language" content="TR"> <meta name="dcterms.subject" content="<?php echo $ayar->site_desc; ?>"> <meta name="dcterms.rights" content="<?php echo $ayar->site_title; ?>"> <meta name="dcterms.audience" content="Global"> <meta name="geo.a3" content="Ankara"> <meta name="geo.country" content="tr"> <meta name="geo.placename" content="Gölbaşı Ankara"> <meta name="revisit-after" content="1 days"/> <meta property="og:title" content="<?php echo $adi ?> - <?php echo $ayar->site_title; ?>"/> <meta property="og:description" content="<?php echo $kisa ?> - <?php echo $ayar->site_title; ?>"/> <meta property="og:image" content="<?php echo $ayar->base_url; ?>Anasayfa"/> <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"> </head> <body class="hidden-bar-wrapper"> <?php include ("header.php");?> <div class="page-wrapper"> <section class="page-title" style="background-image:url(<?php echo $ayar->base_url; ?>images/background/pattern-1.png)"> <div class="auto-container"> <div class="clearfix"> <div class="pull-left"> <div class="title">Hizmetlerimiz</div> <h2><?php echo $adi ?></h2> </div> <div class="pull-right"> <ul class="page-breadcrumb"> <li><a href="<?php echo $ayar->base_url; ?>">Anasayfa</a></li> <li>Hizmetler</li> </ul> </div> </div> </div> </section> <div class="sidebar-page-container"> <div class="auto-container"> <div class="row clearfix"> <div class="sidebar-side col-lg-4 col-md-12 col-sm-12"> <aside class="sidebar"> <div class="sidebar-inner"> <div class="sidebar-widget sidebar-blog-category"> <ul class="blog-cat"> <?php $Sorgusayfalar = Sorgu("SELECT * FROM hizmetler order by id desc"); while($Sonucsayfalar = Sonuc($Sorgusayfalar)) { ?> <?php if($Sonucsayfalar->seo == $gelen_seo) { echo""; } else { echo""; } ?> <li><a href="<?php echo $ayar->base_url; ?>Hizmetlerimiz/<?php echo $Sonucsayfalar->seo ?>"><?php echo $Sonucsayfalar->adi ?></a></li> <?php } ?></ul> </div> <div class="sidebar-widget business-box"> <div class="widget-content" style="background-image:url(<?php echo $ayar->base_url; ?>images/background/pattern-1.png)"> <h3>Hizmetlerimiz hakkında <br>daha fazla bilgi için!</h3> <div class="text">Bize ulaşıp detaylı bilgi alabilirsiniz.</div> <a class="more" href="<?php echo $ayar->base_url; ?>iletisim">Bize Ulaşın <span class="fa fa-angle-double-right"></span></a> </div> </div> </div> </aside> </div> <!-- Content Side --> <div class="content-side col-lg-8 col-md-12 col-sm-12"> <div class="service-single"> <div class="inner-box"> <div class="lower-content"> <h2><?php echo $adi ?></h2> <div class="text"> <p><?php echo $aciklama ?></p> </div> <div class="image"> <img src="<?php echo $ayar->base_url; ?>uploads/hizmetler/<?php echo $resim ?>" alt="Resim" /> </div> </div> </div> </div> </div> </div> </div> </div> <section class="call-to-action-section-three" style="background-image: url(<?php echo $ayar->base_url; ?>images/background/pattern-1.png)"> <div class="auto-container"> <div class="row clearfix"> <!-- Title Column --> <div class="title-column col-lg-8 col-md-12 col-sm-12"> <div class="inner-column"> <div class="experiance">Hizmetlerimiz hakkında daha fazla bilgi için!</div> <h2>Bize ulaşıp detaylı bilgi alabilirsiniz.</h2> </div> </div> <!-- Button Column --> <div class="btn-column col-lg-4 col-md-12 col-sm-12"> <div class="inner-column"> <div class="number"><?php echo $ayar->firma_tel; ?></div> <a href="tel:<?php echo $ayar->firma_tel; ?>" class="theme-btn btn-style-three"><span class="txt">Tıkla Ara</span></a> </div> </div> </div> </div> </section> <?php include ("footer.php");?> </body> </html>
💾 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