관리-도구
편집 파일: policy.php
<!DOCTYPE html> <html dir="ltr" lang="en"> <head> <?php include('include/head.php') ?> </head> <body class> <div id="wrapper" class="clearfix"> <div id="preloader"> <div id="spinner"> <img alt src="images/preloaders/5.gif"> </div> <div id="disable-preloader" class="btn btn-default btn-sm">Disable Preloader</div> </div> <?php include('include/header.php'); $url = $_GET['url']; $policy = mysqli_fetch_assoc(mysqli_query($con,"SELECT * FROM `policy` WHERE `url`='$url'")); ?> <div class="main-content bg-lighter"> <section class="inner-header divider parallax layer-overlay overlay-dark-5" data-bg-img="images/bg/bg6.jpg"> <div class="container pt-70 pb-20"> <div class="section-content"> <div class="row"> <div class="col-md-12"> <h2 class="title text-white text-center"><?= $policy['title'] ?></h2> <ol class="breadcrumb text-left text-black mt-10"> <li><a href="index.php">Home</a></li> <li class="active text-gray-silver"><?= $policy['title'] ?></li> </ol> </div> </div> </div> </div> </section> <section id="about" style="margin-top: 80px;"> <div class="container mt-0 pb-70 pt-0"> <div class="section-content"> <div class="row mt-10"> <div class="col-12 wow fadeInUp" data-wow-duration="1s" data-wow-delay="0.5s"> <h3 class="text-uppercase mt-0"><?= $policy['title'] ?></h3> <?= $policy['description'] ?> </div> </div> </div> </div> </section> </div> <?php include('include/footer.php') ?> <a class="scrollToTop" href="#"><i class="fa fa-angle-up"></i></a> <?php include('include/foot.php') ?> </body> </html>