Файловый менеджер - Редактировать - /home/umudio/public_html/add-services.php
Назад
<?php session_start(); if (isset($_POST["username"]) && isset($_POST["password"])) { $manager = $_POST["username"]; $password = $_POST["password"]; include("includes/config.php"); $cmem = "SELECT id FROM auth WHERE username='$manager' AND password='$password' LIMIT 1"; $run_cmem = mysqli_query($con, $cmem); $count_mem = mysqli_num_rows($run_cmem); if ($count_mem == 1) { while ($row = mysqli_fetch_array($run_cmem)) { $id = $row["id"]; } $_SESSION["id"] = $id; $_SESSION["manager"] = $manager; $_SESSION["password"] = $password; header("location: mod-auth"); exit(); } else { echo "<script>alert('Incorrect Password !!!')</script>"; echo "<script>window.open('./','_self')</script>"; exit(); } } ?> <?php session_start(); if (!isset($_SESSION["manager"])) { header("location: ./"); exit(); } ?> <?php include("includes/config.php"); ?> <?php if (isset($_GET['deltab'])) { unset($temp); if (isset($_GET['deltab'])) { $_GET['deltab'] = trim($_GET['deltab']); if (preg_match('/^[0-9]/u', $_GET['deltab'])) { settype($_GET['deltab'], 'int'); $temp = (int)$_GET['deltab']; } } if (!isset($temp)) { echo "Sorry! Wrong Data!"; exit(); } $deltab = $temp; $result = mysqli_query($con, "DELETE from services where sn = '" . $deltab . "'"); } if (isset($_GET['arhtab'])) { unset($temp); if (isset($_GET['arhtab'])) { $_GET['arhtab'] = trim($_GET['arhtab']); if (preg_match('/^[0-9]/u', $_GET['arhtab'])) { settype($_GET['arhtab'], 'int'); $temp = (int)$_GET['arhtab']; } } if (!isset($temp)) { echo "Sorry! Wrong Data!"; exit(); } $deltab = $temp; $result = mysqli_query($con, "UPDATE sliders set archived='Yes' where sn = '" . $deltab . "'"); } if (isset($_GET['unarhtab'])) { unset($temp); if (isset($_GET['unarhtab'])) { $_GET['unarhtab'] = trim($_GET['unarhtab']); if (preg_match('/^[0-9]/u', $_GET['unarhtab'])) { settype($_GET['unarhtab'], 'int'); $temp = (int)$_GET['unarhtab']; } } if (!isset($temp)) { echo "Sorry! Wrong Data!"; exit(); } $deltab = $temp; $result = mysqli_query($con, "UPDATE sliders set archived='No' where sn = '" . $deltab . "'"); } $query_dio1 = mysqli_query($con, "SELECT * FROM sliders where archived='No' order by dater desc"); $row_dio1 = mysqli_fetch_assoc($query_dio1); $totalRows_dio1 = mysqli_num_rows($query_dio1); $query_dio = mysqli_query($con, "SELECT * FROM sliders where archived='Yes' order by dater desc"); $row_dio = mysqli_fetch_assoc($query_dio); $totalRows_dio = mysqli_num_rows($query_dio); ?> <!doctype html> <!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang=""> <![endif]--> <!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang=""> <![endif]--> <!--[if IE 8]> <html class="no-js lt-ie9" lang=""> <![endif]--> <!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]--> <?php include("includes/pages-header.php"); ?> <div class="header-height"></div> <div class="pager-header"> <div class="container"> <div class="page-content"> <h2>Add Services/What We Do</h2> <p>One thing I ask of the Lord. This I long to dwell in the house of the Lord, <br> all the days of my life.</p> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href="./">Home</a></li> <li class="breadcrumb-item active">Add Services/What We Do</li> </ol> </div> </div> </div><!-- /Page Header --> <!-- /Page Header --> <div class="" style="background-color: #F2F2F2;padding: 47px;"> <div class="row"> <div class="col-lg-9"> <?php include("includes/config.php"); if (isset($_GET['sn'])) { $sn = $_GET['sn']; $delete = "delete from services where id='$sn'"; $run = mysqli_query($con, $delete); if ($delete) { echo "<div class='alert alert-danger'> Service deleted successfully! </div>"; } } ?> <p><a href="mod-auth">Go back to Admin Dashboard</a></p> <?php if (isset($_POST['addservice'])) { $name = str_replace("'", "''", $_POST['name']); $details = str_replace("'", "''", $_POST['details']); $filename = $_FILES['uploader']['name']; $filepath = 'repo/' . $filename; move_uploaded_file($_FILES['uploader']['tmp_name'], $filepath); include("includes/config.php"); global $con; $feedback = "INSERT INTO services (name, image, details) VALUES ('$name','$filepath','$details')"; $run = mysqli_query($con, $feedback); if ($feedback) { echo "<div class='alert alert-success'> Service Added Successfully! </div>"; } else { echo "<div class='alert alert-danger'> An error occured, please try again! </div>"; } } ?> <h2>Add Services/What We Do</h2><br> <form id="form1" name="form1" method="post" action="" enctype="multipart/form-data"> <table width="100%" cellpadding="1" cellspacing="2"> <tr valign="top"> <td style="font-weight:bold; text-align:center">Service Name</td> <td align="left"><input name="name" type="text" size="70" /><br><br></td> </tr> <tr valign="top"> <td style="font-weight:bold; text-align:center">Image</td> <td align="left"><br><input style="border: 2px solid #eee;padding: 5px;width: 77%;" type="file" name="uploader" size="60" required></td> </tr> <tr> <td style="font-weight:bold; text-align:center">Service Details</td> <td><br> <textarea name="details" id="" cols="50" rows="10"><?php echo $contenter; ?></textarea><br> </td> </tr> <tr valign="top"> <td colspan="2"><br> <input style="margin-left: 100px;" name="addservice" type="submit" style="font-size:12px;" class="default-btn" id="addnews" value=" Add Service " /> </td> </tr> </table> </form> <hr /> <p style="color:#990000"><b>Existing Services</b></p> <?php include("includes/config.php"); $get_feedback = "select * from services order by id desc"; $run_feedback = mysqli_query($con, $get_feedback); while ($row_feedback = mysqli_fetch_array($run_feedback)) { $sn = $row_feedback['id']; $name = $row_feedback['name']; $image = $row_feedback['image']; echo " <div class='row' style='margin-bottom: 10px;border-bottom: 1px solid #E6E6E6;padding: 10px;padding-left: 0px;'> <div class='col-lg-3'> <img src='$image' height='70' width='70'/> </div> <div class='col-lg-5'> $name </div> <div class='col-lg-2'> <a href='edit-services?sn=$sn' style='color: blue;'>Edit</a> </div> <div class='col-lg-2'> <a href='add-services?sn=$sn' style='color: red;'>Delete</a> </div> </div> "; } ?> </div> <?php include("includes/sidecontent.php") ?> </div> </div> <?php include("includes/footer.php"); ?> <a data-scroll href="#header" id="scroll-to-top"><i class="arrow_up"></i></a> <!-- jQuery Lib --> <script src="js/vendor/jquery-1.12.4.min.js"></script> <!-- Bootstrap JS --> <script src="js/vendor/bootstrap.min.js"></script> <!-- Tether JS --> <script src="js/vendor/tether.min.js"></script> <!-- Imagesloaded JS --> <script src="js/vendor/imagesloaded.pkgd.min.js"></script> <!-- OWL-Carousel JS --> <script src="js/vendor/owl.carousel.min.js"></script> <!-- isotope JS --> <script src="js/vendor/jquery.isotope.v3.0.2.js"></script> <!-- Smooth Scroll JS --> <script src="js/vendor/smooth-scroll.min.js"></script> <!-- venobox JS --> <script src="js/vendor/venobox.min.js"></script> <!-- ajaxchimp JS --> <script src="js/vendor/jquery.ajaxchimp.min.js"></script> <!-- Counterup JS --> <script src="js/vendor/jquery.counterup.min.js"></script> <!-- waypoints js --> <script src="js/vendor/jquery.waypoints.v2.0.3.min.js"></script> <!-- Slick Nav JS --> <script src="js/vendor/jquery.slicknav.min.js"></script> <!-- Nivo Slider JS --> <script src="js/vendor/jquery.nivo.slider.pack.js"></script> <!-- Letter Animation JS --> <script src="js/vendor/letteranimation.min.js"></script> <!-- Wow JS --> <script src="js/vendor/wow.min.js"></script> <!-- Contact JS --> <script src="js/contact.js"></script> <!-- Main JS --> <script src="js/main.js"></script> </body> </html>
| ver. 1.4 |
Github
|
.
| PHP 5.6.40 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка