Файловый менеджер - Редактировать - /home/umudio/public_html/monthly.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 Month"; if (is_numeric($_POST['dyear'])) { $dyear = $_POST['dyear']; $dmonth = $_POST['dmonth']; $ovo = mktime(0, 0, 0, $dmonth, 1, $dyear); $nosofdays = date("t", $ovo); $nmonth = date("F", $ovo); $nday = date("N", $ovo); $ss = "Displaying Archdiocesan Activities for " . $nmonth . " " . $_POST['dyear']; } if ($nosofdays == "") { $dyear = date("Y"); $dmonth = date("n"); $ovo = mktime(0, 0, 0, $dmonth, 1, $dyear); $nosofdays = date("t", $ovo); $nmonth = date("F", $ovo); $nday = date("N", $ovo); $ss = "Displaying Archdiocesan Activities for " . $nmonth . " " . date("Y"); } ?> <!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>Month: <select name="dmonth" id="dmonth"> <option value="1" selected="selected">January</option> <option value="2">February</option> <option value="3">March</option> <option value="4">April</option> <option value="5">May</option> <option value="6">June</option> <option value="7">July</option> <option value="8">August</option> <option value="9">September</option> <option value="10">October</option> <option value="11">November</option> <option value="12">December</option> </select> </strong></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="activityyearly2.php">View Yearly 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="16%" bgcolor="#606060"><strong>Sunday</strong></td> <td width="14%" bgcolor="#606060"><strong>Monday</strong></td> <td width="14%" bgcolor="#606060"><strong>Tuesday</strong></td> <td width="14%" bgcolor="#606060"><strong>Wednesday</strong></td> <td width="14%" bgcolor="#606060"><strong>Thursday</strong></td> <td width="14%" bgcolor="#606060"><strong>Friday</strong></td> <td width="14%" bgcolor="#606060"><strong>Saturday</strong></td> </tr> <?php $counter = 1; while ($counter <= $nosofdays) { echo "<tr valign='top'>"; for ($i = 1; $i <= 7; $i++) { if ($nday == 8) { echo "<td bgcolor='#DADADA'><div align='left'> "; echo "</div></td>"; } if ($nday == 7) { $nday = 0; } if ($nday == 0) { echo "<td bgcolor='#DADADA' align='left'> <div align='left' style='color:#990000; font-size:16px;'><b>$counter</b></div>"; if ($counter < 10) { $counter = "0" . $counter; } $nne = $dyear . "-" . $dmonth . "-" . $counter; $query_expenses = "SELECT * FROM calend WHERE fromdate = '" . $dyear . "-" . $dmonth . "-" . $counter . "' order by activity asc"; $expenses = mysqli_query($query_expenses, $con); //$row_expenses = mysql_fetch_assoc($expenses); //$totalRows_expenses = mysql_num_rows($expenses); while ($row_expenses = mysqli_fetch_assoc($expenses)) { echo ("<div style='padding-left:5px;padding-right:5px;border-top:1px solid #999999;color:#000099'><b>" . $row_expenses['activity'] . "</b></div>"); } $query_expenses = "SELECT * FROM calend WHERE fromdate < '" . $dyear . "-" . $dmonth . "-" . $counter . "' and todate >= '" . $dyear . "-" . $dmonth . "-" . $counter . "' order by activity asc"; $expenses = mysqli_query($query_expenses, $con); //$row_expenses = mysql_fetch_assoc($expenses); //$totalRows_expenses = mysql_num_rows($expenses); while ($row_expenses = mysqli_fetch_assoc($expenses)) { echo ("<div style='padding-left:5px;padding-right:5px;border-top:1px solid #999999;color:#000099'><b>" . $row_expenses['activity'] . "</b></div>"); } echo "</td>"; $counter++; if ($counter > $nosofdays) { $nday = 8; } } if ($nday == 1) { echo "<td bgcolor='#DADADA'><div align='left'> "; echo "</div></td>"; $nday = 0; } if ($nday == 2) { echo "<td bgcolor='#DADADA'><div align='left'> "; echo "</div></td>"; $nday = 1; } if ($nday == 3) { echo "<td bgcolor='#DADADA'><div align='left'> "; echo "</div></td>"; $nday = 2; } if ($nday == 4) { echo "<td bgcolor='#DADADA'><div align='left'> "; echo "</div></td>"; $nday = 3; } if ($nday == 5) { echo "<td bgcolor='#DADADA'><div align='left'> "; echo "</div></td>"; $nday = 4; } if ($nday == 6) { echo "<td bgcolor='#DADADA'><div align='left'> "; echo "</div></td>"; $nday = 5; } } echo "</tr>"; } ?> <tr> <td colspan="7"> </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
|
Настройка