Файловый менеджер - Редактировать - /home/umudio/public_html/planner.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 include("includes/config.php"); ?> <?php $nosofdays = ""; $ss = "Displaying for Current Year"; if (is_numeric($_POST['dyear'])) { $dyear = $_POST['dyear']; $ovo = mktime(0, 0, 0, 1, 1, $dyear); $nosofdays = date("t", $ovo); $ss = "Displaying Archdiocesan Activities for " . $_POST['dyear']; } if ($nosofdays == "") { $dyear = date("Y"); $ss = "Displaying Archdiocesan Activities for " . date("Y"); } $ddyear = $dyear + 1; ?> <!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>Diocesan Year Calendar</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">Diocesan Year Calendar</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"> <h2>Diocesan Year Calendar</h2> <form method="post" name="search" id="search"> <table width="86%" border="0" align="center" cellpadding="2" cellspacing="1" bgcolor="#F7F7F7"> <tr> <td align="center" bgcolor="#E9E9E9"><b>Search By</b></td> <td align="center" valign="middle" bgcolor="#E9E9E9"><strong>Year: <input type="text" name="dyear" maxlength="4" size="4" value="<?php echo date('Y'); ?>" /> </strong></td> <td align="center" valign="middle" bgcolor="#E9E9E9"> <input name="button2" type="submit" class="style14" id="button2" value=" Search " /></td> </tr> </table> </form> <div align="center" style="padding-top:10px;"><a href="upcoming.php">List of Activities</a> <!-- | --> <!-- <a href="monthly.php">View Monthly Calendar</a> --> </div> <div class="headingbigger" align="center"> <hr /><?php echo $ss; ?> <hr /> </div> <table width="100%" border="0" align="center" cellpadding="2" cellspacing="2"> <tr style="color:#FFFFFF;"> <td width="25%" bgcolor="#606060" align="center"><strong>January <?php echo ($dyear); ?></strong></td> <td width="25%" bgcolor="#606060" align="center"><strong>February <?php echo ($dyear); ?></strong></td> <td width="25%" bgcolor="#606060" align="center"><strong>March <?php echo ($dyear); ?></strong></td> <td width="25%" bgcolor="#606060" align="center"><strong>April <?php echo ($dyear); ?></strong></td> </tr> <tr valign='top'> <td bgcolor='#DADADA'> <div align='left'> <?php $dmonth = 1; $expenses = mysqli_query($con, "SELECT sn, activity, archived, fromdate, todate, date_format(fromdate,'%e %b') as fdate, date_format(todate,'%e %b') as tdate FROM calend WHERE month(fromdate) = " . $dmonth . " and year(fromdate) = " . $dyear . " order by fromdate asc"); while ($row_expenses = mysqli_fetch_assoc($expenses)) { echo ("<div style='padding-left:20px; text-indent:-16px'><b>"); echo $row_expenses['fdate']; if ($row_expenses['todate'] != "") { echo (" - "); echo $row_expenses['tdate']; } echo (":</b> "); echo ($row_expenses['activity']); echo ("</div>"); } ?> </div> </td> <td bgcolor='#DADADA'> <div align='left'> <?php $dmonth = 2; $expenses = mysqli_query($con, "SELECT sn, activity, archived, fromdate, todate, date_format(fromdate,'%e %b') as fdate, date_format(todate,'%e %b') as tdate FROM calend WHERE month(fromdate) = " . $dmonth . " and year(fromdate) = " . $dyear . " order by fromdate asc"); while ($row_expenses = mysqli_fetch_assoc($expenses)) { echo ("<div style='padding-left:20px; text-indent:-16px'><b>"); echo $row_expenses['fdate']; if ($row_expenses['todate'] != "") { echo (" - "); echo $row_expenses['tdate']; } echo (":</b> "); echo ($row_expenses['activity']); echo ("</div>"); } ?> </div> </td> <td bgcolor='#DADADA'> <div align='left'> <?php $dmonth = 3; $expenses = mysqli_query($con, "SELECT sn, activity, archived, fromdate, todate, date_format(fromdate,'%e %b') as fdate, date_format(todate,'%e %b') as tdate FROM calend WHERE month(fromdate) = " . $dmonth . " and year(fromdate) = " . $dyear . " order by fromdate asc"); while ($row_expenses = mysqli_fetch_assoc($expenses)) { echo ("<div style='padding-left:20px; text-indent:-16px'><b>"); echo $row_expenses['fdate']; if ($row_expenses['todate'] != "") { echo (" - "); echo $row_expenses['tdate']; } echo (":</b> "); echo ($row_expenses['activity']); echo ("</div>"); } ?> </div> </td> <td bgcolor='#DADADA'> <div align='left'> <?php $dmonth = 4; $expenses = mysqli_query($con, "SELECT sn, activity, archived, fromdate, todate, date_format(fromdate,'%e %b') as fdate, date_format(todate,'%e %b') as tdate FROM calend WHERE month(fromdate) = " . $dmonth . " and year(fromdate) = " . $dyear . " order by fromdate asc"); while ($row_expenses = mysqli_fetch_assoc($expenses)) { echo ("<div style='padding-left:20px; text-indent:-16px'><b>"); echo $row_expenses['fdate']; if ($row_expenses['todate'] != "") { echo (" - "); echo $row_expenses['tdate']; } echo (":</b> "); echo ($row_expenses['activity']); echo ("</div>"); } ?> </div> </td> </tr> <tr style="color:#FFFFFF;"> <td width="25%" bgcolor="#606060" align="center"><strong>May <?php echo ($dyear); ?></strong></td> <td width="25%" bgcolor="#606060" align="center"><strong>June <?php echo ($dyear); ?></strong></td> <td width="25%" bgcolor="#606060" align="center"><strong>July <?php echo ($dyear); ?></strong></td> <td width="25%" bgcolor="#606060" align="center"><strong>August <?php echo ($dyear); ?></strong></td> </tr> <tr valign='top'> <td bgcolor='#DADADA'> <div align='left'> <?php $dmonth = 5; $expenses = mysqli_query($con, "SELECT sn, activity, archived, fromdate, todate, date_format(fromdate,'%e %b') as fdate, date_format(todate,'%e %b') as tdate FROM calend WHERE month(fromdate) = " . $dmonth . " and year(fromdate) = " . $dyear . " order by fromdate asc"); while ($row_expenses = mysqli_fetch_assoc($expenses)) { echo ("<div style='padding-left:20px; text-indent:-16px'><b>"); echo $row_expenses['fdate']; if ($row_expenses['todate'] != "") { echo (" - "); echo $row_expenses['tdate']; } echo (":</b> "); echo ($row_expenses['activity']); echo ("</div>"); } ?> </div> </td> <td bgcolor='#DADADA'> <div align='left'> <?php $dmonth = 6; $expenses = mysqli_query($con, "SELECT sn, activity, archived, fromdate, todate, date_format(fromdate,'%e %b') as fdate, date_format(todate,'%e %b') as tdate FROM calend WHERE month(fromdate) = " . $dmonth . " and year(fromdate) = " . $dyear . " order by fromdate asc"); while ($row_expenses = mysqli_fetch_assoc($expenses)) { echo ("<div style='padding-left:20px; text-indent:-16px'><b>"); echo $row_expenses['fdate']; if ($row_expenses['todate'] != "") { echo (" - "); echo $row_expenses['tdate']; } echo (":</b> "); echo ($row_expenses['activity']); echo ("</div>"); } ?> </div> </td> <td bgcolor='#DADADA'> <div align='left'> <?php $dmonth = 7; $expenses = mysqli_query($con, "SELECT sn, activity, archived, fromdate, todate, date_format(fromdate,'%e %b') as fdate, date_format(todate,'%e %b') as tdate FROM calend WHERE month(fromdate) = " . $dmonth . " and year(fromdate) = " . $dyear . " order by fromdate asc"); while ($row_expenses = mysqli_fetch_assoc($expenses)) { echo ("<div style='padding-left:20px; text-indent:-16px'><b>"); echo $row_expenses['fdate']; if ($row_expenses['todate'] != "") { echo (" - "); echo $row_expenses['tdate']; } echo (":</b> "); echo ($row_expenses['activity']); echo ("</div>"); } ?> </div> </td> <td bgcolor='#DADADA'> <div align='left'> <?php $dmonth = 8; $expenses = mysqli_query($con, "SELECT sn, activity, archived, fromdate, todate, date_format(fromdate,'%e %b') as fdate, date_format(todate,'%e %b') as tdate FROM calend WHERE month(fromdate) = " . $dmonth . " and year(fromdate) = " . $dyear . " order by fromdate asc"); while ($row_expenses = mysqli_fetch_assoc($expenses)) { echo ("<div style='padding-left:20px; text-indent:-16px'><b>"); echo $row_expenses['fdate']; if ($row_expenses['todate'] != "") { echo (" - "); echo $row_expenses['tdate']; } echo (":</b> "); echo ($row_expenses['activity']); echo ("</div>"); } ?> </div> </td> </tr> <tr style="color:#FFFFFF;"> <td width="25%" bgcolor="#606060" align="center"><strong>September <?php echo ($dyear); ?></strong></td> <td width="25%" bgcolor="#606060" align="center"><strong>October <?php echo ($dyear); ?></strong></td> <td width="25%" bgcolor="#606060" align="center"><strong>November <?php echo ($dyear); ?></strong></td> <td width="25%" bgcolor="#606060" align="center"><strong>December <?php echo ($dyear); ?></strong></td> </tr> <tr valign='top'> <td bgcolor='#DADADA'> <div align='left'> <?php $dmonth = 9; $expenses = mysqli_query($con, "SELECT sn, activity, archived, fromdate, todate, date_format(fromdate,'%e %b') as fdate, date_format(todate,'%e %b') as tdate FROM calend WHERE month(fromdate) = " . $dmonth . " and year(fromdate) = " . $dyear . " order by fromdate asc"); while ($row_expenses = mysqli_fetch_assoc($expenses)) { echo ("<div style='padding-left:20px; text-indent:-16px'><b>"); echo $row_expenses['fdate']; if ($row_expenses['todate'] != "") { echo (" - "); echo $row_expenses['tdate']; } echo (":</b> "); echo ($row_expenses['activity']); echo ("</div>"); } ?> </div> </td> <td bgcolor='#DADADA'> <div align='left'> <?php $dmonth = 10; $expenses = mysqli_query($con, "SELECT sn, activity, archived, fromdate, todate, date_format(fromdate,'%e %b') as fdate, date_format(todate,'%e %b') as tdate FROM calend WHERE month(fromdate) = " . $dmonth . " and year(fromdate) = " . $dyear . " order by fromdate asc"); while ($row_expenses = mysqli_fetch_assoc($expenses)) { echo ("<div style='padding-left:20px; text-indent:-16px'><b>"); echo $row_expenses['fdate']; if ($row_expenses['todate'] != "") { echo (" - "); echo $row_expenses['tdate']; } echo (":</b> "); echo ($row_expenses['activity']); echo ("</div>"); } ?> </div> </td> <td bgcolor='#DADADA'> <div align='left'> <?php $dmonth = 11; $expenses = mysqli_query($con, "SELECT sn, activity, archived, fromdate, todate, date_format(fromdate,'%e %b') as fdate, date_format(todate,'%e %b') as tdate FROM calend WHERE month(fromdate) = " . $dmonth . " and year(fromdate) = " . $dyear . " order by fromdate asc"); while ($row_expenses = mysqli_fetch_assoc($expenses)) { echo ("<div style='padding-left:20px; text-indent:-16px'><b>"); echo $row_expenses['fdate']; if ($row_expenses['todate'] != "") { echo (" - "); echo $row_expenses['tdate']; } echo (":</b> "); echo ($row_expenses['activity']); echo ("</div>"); } ?> </div> </td> <td bgcolor='#DADADA'> <div align='left'> <?php $dmonth = 12; $expenses = mysqli_query($con, "SELECT sn, activity, archived, fromdate, todate, date_format(fromdate,'%e %b') as fdate, date_format(todate,'%e %b') as tdate FROM calend WHERE month(fromdate) = " . $dmonth . " and year(fromdate) = " . $dyear . " order by fromdate asc"); while ($row_expenses = mysqli_fetch_assoc($expenses)) { echo ("<div style='padding-left:20px; text-indent:-16px'><b>"); echo $row_expenses['fdate']; if ($row_expenses['todate'] != "") { echo (" - "); echo $row_expenses['tdate']; } echo (":</b> "); echo ($row_expenses['activity']); echo ("</div>"); } ?> </div> </td> </tr> </table> </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
|
Настройка