Файловый менеджер - Редактировать - /home/umudio/public_html/OLD/activitymonthly2.php
Назад
<?php include("Connecter/dataconn.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 PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <?php include("head.php"); ?> </head> <body> <?php include("top.php"); ?> <?php include("titlebar.php"); ?> <?php include("mast.php"); ?> <?php include("navbar.php"); ?> <?php include("contenttop.php"); ?> <?php include("sidebar.php"); ?> <?php include("mainbartop.php"); ?> <!--Content Goes here--> <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 = mysql_query($query_expenses, $csn) or die(mysql_error()); //$row_expenses = mysql_fetch_assoc($expenses); //$totalRows_expenses = mysql_num_rows($expenses); while ($row_expenses = mysql_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 = mysql_query($query_expenses, $csn) or die(mysql_error()); //$row_expenses = mysql_fetch_assoc($expenses); //$totalRows_expenses = mysql_num_rows($expenses); while ($row_expenses = mysql_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> <!--Content Ends here--> <?php include("mainbarbottom.php"); ?> <?php include("contentbottom.php"); ?> <?php include("footbar.php"); ?> <?php include("bottom.php"); ?> </body> </html>
| ver. 1.4 |
Github
|
.
| PHP 5.6.40 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка