Файловый менеджер - Редактировать - /home/umudio/public_html/editdean.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>Past Ordinaries</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">Past Ordinaries</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 if (isset($_POST['update'])) { include("includes/config.php"); $update_id = $_GET['sn']; $statuse = str_replace("'", "''", $_POST['status']); $archivede = str_replace("'", "''", $_POST['archived']); $titlere = str_replace("'", "''", $_POST['titler']); $namere = str_replace("'", "''", $_POST['namer']); $specialassigne = str_replace("'", "''", $_POST['specialassign']); $studyleavee = str_replace("'", "''", $_POST['studyleave']); $dobe = str_replace("'", "''", $_POST['dob']); $nativee = str_replace("'", "''", $_POST['native']); $phonee = str_replace("'", "''", $_POST['phone']); $emaile = str_replace("'", "''", $_POST['email']); $parishe = str_replace("'", "''", $_POST['parish']); $ordinatione = str_replace("'", "''", $_POST['ordination']); $placeofordinatione = str_replace("'", "''", $_POST['placeofordination']); $diede = str_replace("'", "''", $_POST['died']); $buriede = str_replace("'", "''", $_POST['buried']); $buriedate = str_replace("'", "''", $_POST['buriedat']); $ordainingprelatee = str_replace("'", "''", $_POST['ordainingprelate']); $pastoralworke = str_replace("'", "''", $_POST['pastoralwork']); $otherdiocesanappointmente = str_replace("'", "''", $_POST['otherdiocesanappointment']); $formproe = "Null"; $usernamee = "Null"; $passwrde = "Null"; $update_post = "update priests set namer='$namere', ordination='$ordinatione', dob='$dobe', email='$emaile', phone='$phonee', archived='$archivede', status='$statuse', specialassign='$specialassigne', studyleave='$studyleavee', diocese='$diocesee', community='$communitye', username='$usernamee', passwrd='$passwrde', titler='$titlere', formpro='$formproe', died='$diede', buried='$buriede', buriedat='$buriedate', native='$nativee', parish='$parishe', placeofordination='$placeofordinatione', ordainingprelate='$ordainingprelatee', pastoralwork='$pastoralworke', otherdiocesanappointment='$otherdiocesanappointmente' where sn='$update_id'"; $update_post = mysqli_query($con, $update_post); if ($update_post) { echo "<div class='alert alert-success'> Personnel updated successfully! </div>"; } else { echo "<div class='alert alert-danger'> An error occured, please try again! </div>"; } } ?> <p><a href="mod-auth">Go back to Admin Dashboard</a></p> <h2>Edit Ordinary</h2><br> <?php include("includes/config.php"); $id = $_GET['sn']; $get_post = "select * from priests where sn=$id"; $run_post = mysqli_query($con, $get_post); while ($row_post = mysqli_fetch_array($run_post)) { $titler = $row_post['titiler']; $namer = $row_post['namer']; $ordination = $row_post['ordination']; $dob = $row_post['dob']; $email = $row_post['email']; $phone = $row_post['phone']; $archived = $row_post['archived']; $died = $row_post['died']; $buried = $row_post['buried']; $buriedat = $row_post['buriedat']; $status = $row_post['status']; $specialassign = $row_post['specialassign']; $studyleave = $row_post['studyleave']; $diocese = $row_post['diocese']; $communitiy = $row_post['community']; $username = $row_post['username']; $native = $row_post['native']; $parish = $row_post['parish']; $placeofordination = $row_post['placeofordination']; $ordainingprelate = $row_post['ordainingprelate']; $pastoralwork = $row_post['pastoralwork']; $otherdiocesanappointment = $row_post['otherdiocesanappointment']; $passwrd = $row_post['passwrd']; } ?> <form id="form1" name="form1" method="post" action="editdean.php"> <input name="status" type="hidden" value="Aba Diocesan Priest" /> <input name="archived" type="hidden" value="No" /> <table width="100%" cellpadding="1" cellspacing="2"> <tr valign="top"> <td style="text-align:left" width="200px"><span style="font-weight:bold; color:#009900; font-size:30px;"></span></td> <td><b>Title: </b><select name="titler"> <option value="Msgr.">Msgr.</option> <option value="Very Rev. Fr.">Very Rev. Fr.</option> <option value="Rev. Fr." selected="selected">Rev. Fr.</option> </select> <b>Name: </b><input name="namer" value="<?php echo $namer; ?>" size="50" type="text" /><br><br></td> </tr> <tr valign="top"> <td style="text-align:left"> </td> <td><b>Special Assignment: </b><input name="specialassign" value="<?php echo $specialassign; ?>" size="30" type="text" /> <b>Study Leave: </b><input name="studyleave" value="<?php echo $studyleave; ?>" size="10" type="text" /><br><br> </td> </tr> <tr valign="top"> <td> </td> <td> <b>Date of Birth: </b><input name="dob" readonly value="<?php echo $dob; ?>" id="dob" type="text" size="8" /> <button id="triggerd"><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: "triggerd" // ID of the button }); </script> <b>Native of: </b><input name="native" value="<?php echo $native; ?>" size="30" type="text" /><br><br> </td> </tr> <tr valign="top"> <td style="text-align:left"> </td> <td><b>Phone: </b><input value="<?php echo $phone; ?>" name="phone" size="20" type="text" /> <b>Email: </b><input name="email" value="<?php echo $email; ?>" size="30" type="text" /><br><br></td> </tr> <tr valign="top"> <td style="text-align:left"> </td> <td><b>Parish: </b><input name="parish" value="<?php echo $parish; ?>" size="50" type="text" /><br><br></td> </tr> <tr valign="top"> <td style="text-align:left"> </td> <td> <b>Ordination: </b><input readonly value="<?php echo $ordination; ?>" name="ordination" id="ordination" type="text" size="8" /> <button id="triggero"><i class="ti-calendar"></i></button> <script type="text/javascript"> Calendar.setup({ inputField: "ordination", // ID of the input field ifFormat: "%Y-%m-%d", // the date format button: "triggero" // ID of the button }); </script> <b>Place of Ordination: </b><input value="<?php echo $placeofordination; ?>" name="placeofordination" size="30" type="text" /> <br><br> <b>Died: </b><input value="<?php echo $died; ?>" name="died" size="50" type="text" /> <br><br><b>Buried: </b><input value="<?php echo $buried; ?>" name="buried" size="50" type="text" /> <br><br><b>Buried At: </b><input value="<?php echo $buriedat; ?>" name="buriedat" size="50" type="text" /><br><br> </tr> <tr valign="top"> <td style="text-align:left"> </td> <td><b>Ordaining Prelate: </b><input value="<?php echo $ordainingprelate; ?>" name="ordainingprelate" size="50" type="text" /> <div style="line-height:15px; height:15px;"> </div> <br><br> </td> </tr> <tr valign="top"> <td><b>Places of Pastoral Work Experience</b><br />(Format: Year - Assignment, Place.)<br /><i><b>Eg:</b> 2015 - Parish Priest, St Peter, Okeare.</i></td> <td> <textarea name="pastoralwork" rows="8" cols="70"><?php echo $pastoralwork; ?></textarea><br><br></td> </tr> <tr valign="top"> <td><b>Other Diocesan Appointments</b><br />(Format: Year - Office or Position Held.)<br /><i><b>Eg:</b> 2015 - Director of Communications.</i></td> <td><textarea name="otherdiocesanappointment" rows="8" cols="70"><?php echo $otherdiocesanappointment; ?></textarea><br><br></td> </tr> <tr valign="top"> <td colspan="2"><br> <input style="margin-left: 200px;" name="update" type="submit" style="font-size:12px;" class="default-btn" id="" value=" Edit Personnel " /> </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
|
Настройка