Файловый менеджер - Редактировать - /home/umudio/public_html/editbishop.php
Назад
<?php session_start(); if (!isset($_SESSION["manager"])) { header("location: ./"); exit(); } ?> <!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>Edit Bishop's Profile</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">Edit Bishop's Profile</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"> <p><a href="mod-auth">Go back to Admin Dashboard</a></p> <?php include_once 'includes/config.php'; if (isset($_POST['update'])) { $contenter = str_replace("'", "''", $_POST['contenter']); $nam = str_replace("'", "''", $_POST['nam']); $dob = str_replace("'", "''", $_POST['dob']); $dia = str_replace("'", "''", $_POST['dia']); $pri = str_replace("'", "''", $_POST['pri']); $epi = str_replace("'", "''", $_POST['epi']); $res = str_replace("'", "''", $_POST['res']); $ema = str_replace("'", "''", $_POST['ema']); $mot = str_replace("'", "''", $_POST['mot']); $pho = str_replace("'", "''", $_POST['pho']); $detail = str_replace("'", "''", $_POST['detail']); $filename = str_replace(" ", "_", $_FILES['image']['name']); $filepath = 'repo/' . $filename; move_uploaded_file($_FILES['image']['tmp_name'], $filepath); global $con; $update = "UPDATE bishop set namer = '" . $nam . "',dob = '" . $dob . "',diaconate = '" . $dia . "',priestly = '" . $pri . "', episcopal = '" . $epi . "', email = '" . $ema . "', phone = '" . $pho . "', residence = '" . $res . "', detail = '" . $detail . "', motto = '" . $mot . "', photo = '" . $filepath . "' where sn = 1"; $update = mysqli_query($con, $update); if ($update) { echo "<div class='alert alert-success'> Update Successful! </div>"; } else { echo "<div class='alert alert-danger'> An error occured, please try again! </div>"; } } ?> <h2>Edit Bishop's Profile</h2><br> <?php include("includes/config.php"); $rsdirectory = mysqli_query($con, "SELECT * FROM bishop where sn = 1"); $row_rsdirectory = mysqli_fetch_assoc($rsdirectory); ?> <form action="" method="post" enctype="multipart/form-data"> <table width="90%"> <style type="text/css"> input { margin-bottom: 10px; margin-top: 10px; } </style> <tr class="tb" valign="top"> <td style="font-weight:bold"> Name: </td> <td> <input name="nam" id="namer" type="text" value="<?php echo $row_rsdirectory['namer']; ?>" size="50"> </td> </tr> <tr valign="top"> <td style="font-weight:bold">Date of Birth: </td> <td> <input name="dob" id="dob" type="text" value="<?php echo $row_rsdirectory['dob']; ?>" size="45" readonly="readonly"> <button id="trigger1"><i class="ti-calendar"></i></button> <script type="text/javascript"> Calendar.setup({ inputField: "dob", // ID of the input field ifFormat: "%Y-%m-%d", // the date format button: "trigger1" // ID of the button }); </script> </td> </tr> <tr valign="top"> <td style="font-weight:bold">Diaconate Ordination: </td> <td> <input name="dia" id="diaconate" type="text" value="<?php echo $row_rsdirectory['diaconate']; ?>" size="45" readonly="readonly"> <button id="trigger2"><i class="ti-calendar"></i></button> <script type="text/javascript"> Calendar.setup({ inputField: "diaconate", // ID of the input field ifFormat: "%Y-%m-%d", // the date format button: "trigger2" // ID of the button }); </script> </td> </tr> <tr valign="top"> <td style="font-weight:bold">Priestly Ordination: </td> <td> <input name="pri" id="priestly" type="text" value="<?php echo $row_rsdirectory['priestly']; ?>" size="45" readonly="readonly"> <button id="trigger3"><i class="ti-calendar"></i></button> <script type="text/javascript"> Calendar.setup({ inputField: "priestly", // ID of the input field ifFormat: "%Y-%m-%d", // the date format button: "trigger3" // ID of the button }); </script> </td> </tr> <tr valign="top"> <td style="font-weight:bold">Episcopal Ordination: </td> <td> <input name="epi" id="episcopal" type="text" value="<?php echo $row_rsdirectory['episcopal']; ?>" size="45" readonly="readonly"> <button id="trigger4"><i class="ti-calendar"></i></button> <script type="text/javascript"> Calendar.setup({ inputField: "episcopal", // ID of the input field ifFormat: "%Y-%m-%d", // the date format button: "trigger4" // ID of the button }); </script> </td> </tr> <?php $res1 = $row_rsdirectory['detail']; $new_string = urldecode($res1); $new_string = preg_replace("[%22]", """, $new_string); $new_string = preg_replace("[%27]", "'", $new_string); $res1 = urldecode($new_string); echo $res1; ?></textarea> </td> </tr> <tr valign="top"> <td style="font-weight:bold">Other Details: </td> <td> <textarea name="res" id="residence" cols="49" rows="5"><?php $res1 = $row_rsdirectory['residence']; $new_string = urldecode($res1); $new_string = preg_replace("[%22]", """, $new_string); $new_string = preg_replace("[%27]", "'", $new_string); $res1 = urldecode($new_string); echo $res1; ?></textarea> </td> </tr> <tr valign="top"> <td style="font-weight:bold">Phone: </td> <td> <input name="pho" id="phone" type="text" value="<?php echo $row_rsdirectory['phone']; ?>" size="50"> </td> </tr> <tr valign="top"> <td style="font-weight:bold">E-mail: </td> <td> <input name="ema" id="email" type="text" value="<?php echo $row_rsdirectory['email']; ?>" size="50"> </td> </tr> <tr valign="top"> <td style="font-weight:bold">Motto: </td> <td> <input name="mot" id="motto" type="text" value="<?php echo $row_rsdirectory['motto']; ?>" size="50"> </td> </tr> <tr valign="top"> <td style="font-weight:bold">Existing Photo: </td> <td> <img src="<?php echo $row_rsdirectory['photo']; ?>" width="100px" /> </td> </tr> <tr valign="top"> <td style="font-weight:bold">New Photo: </td> <td> <input type="file" id="uploader" name="image" size="40" required> </td> </tr> <tr> <td style="font-weight:bold;"> <p> </p> <p> </p> </td> <td> <div class="form-group row"> <div class="col-md-12"> <input type="submit" name="update" value="Update Profile" class="default-btn-two"> </div> </div> </td> </tr> </table> </form> </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
|
Настройка