Файловый менеджер - Редактировать - /home/umudio/public_html/repo/listreligiouscon.php.tar
Назад
home/umudio/public_html/OLD/listreligiouscon.php 0000644 00000013423 14773626700 0016044 0 ustar 00 <?php if (!$_SESSION){ session_start(); } $acc=$_SESSION['acc']; $yto=$_SESSION['yto']; if(isset($acc) && ($acc=="administratoroftheUmuahiasiteDiocese2016Byto")){?> <?php include("Connecter/dataconn.php"); ?> <?php if (isset($_GET['deltab'])) { unset($temp); if(isset($_GET['deltab'])){ $_GET['deltab']=trim($_GET['deltab']); if(preg_match('/^[0-9]/u',$_GET['deltab'])){ settype($_GET['deltab'], 'int'); $temp=(int)$_GET['deltab']; } } if(!isset($temp)){echo "Sorry! Wrong Data!"; exit();} $deltab=$temp; $sql=sprintf("delete from religiouscon where sn = %s", mysql_real_escape_string($deltab)); $result=mysql_query($sql,$csn) or die(mysql_error()); } $query_dio1 = "SELECT * FROM religiouscon where status='Male' order by namer"; $dio1 = mysql_query($query_dio1, $csn) or die(mysql_error()); $row_dio1 = mysql_fetch_assoc($dio1); $totalRows_dio1 = mysql_num_rows($dio1); $query_dio2 = "SELECT * FROM religiouscon where status='Female' order by namer"; $dio2 = mysql_query($query_dio2, $csn) or die(mysql_error()); $row_dio2 = mysql_fetch_assoc($dio2); $totalRows_dio2 = mysql_num_rows($dio2); ?> <!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"); ?> <?php include("textare.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--> <div class="headingbiggest">Religious Congregation in the Diocese</div> <p> </p> <hr /> <p style="color:#990000"><b>Add New Religious Congregation</b></p> <form id="form1" name="form1" method="post" action="dadmin.php"> <table width="100%" cellpadding="1" cellspacing="2"> <?php for($i=1; $i<=1; $i++){ ?> <tr valign="top"> <td style="text-align:left"><span style="font-weight:bold; color:#009900; font-size:30px;"><?php echo($i); ?></span></td> <td><b>Name:</b><br /><input name="nameadd<?php echo($i); ?>" size="40" type="text" /></td> </tr> <tr valign="top"> <td><b>Status:</b></td> <td><select name="status<?php echo($i); ?>"> <option value="Female">Female</option> <option value="Male" selected="selected">Male</option> </select></td> </tr> <tr valign="top"> <td> </td> <td><b>Suffix:</b><br /><input name="members<?php echo($i); ?>" size="40" type="text" /></td> </tr> <tr valign="top"> <td colspan="2"><hr /></td> </tr> <?php } ?> <tr valign="top"> <td style="text-align:right; font-size:10px;" colspan="12"><a href="dadmin.php">Cancel</a> <input name="addreligiouscon" type="submit" style="font-size:12px;" id="addreligiouscon" value=" Add Religious Congregation " /> </td> </tr> </table> </form> <hr /> <p style="color:#990000"><b>Existing Male Religious Congregations</b></p> <?php if ($totalRows_dio1>0) { ?> <div class="post"> <table width="98%"> <?php do { ?><tr valign="top"> <td style="border-bottom:1px solid #333333;"><?php echo substr(strip_tags($row_dio1['namer']),0,40); ?></td> <td style="border-bottom:1px solid #333333;"><a href="editreligiouscon.php?tab=<?php echo $row_dio1['sn']; ?>">Edit</a> <a href="listreligiouscon.php?deltab=<?php echo $row_dio1['sn']; ?>">Delete</a> <a href="listreligious.php?tab=<?php echo $row_dio1['sn']; ?>">Add/Edit Communities</a> </td></tr> <?php } while ($row_dio1 = mysql_fetch_assoc($dio1)); ?> </table> </div><div class="post-bot"></div> <?php } else { echo ("None Found!"); } ?> <hr /> <p style="color:#990000"><b>Existing Female Religious Congregations</b></p> <?php if ($totalRows_dio2>0) { ?> <div class="post"> <table width="98%"> <?php do { ?><tr valign="top"> <td style="border-bottom:1px solid #333333;"><?php echo substr(strip_tags($row_dio2['namer']),0,40); ?></td> <td style="border-bottom:1px solid #333333;"><a href="editreligiouscon.php?tab=<?php echo $row_dio2['sn']; ?>">Edit</a> <a href="listreligiouscon.php?deltab=<?php echo $row_dio2['sn']; ?>">Delete</a> <a href="listreligious.php?tab=<?php echo $row_dio2['sn']; ?>">Add/Edit Communities</a> </td></tr> <?php } while ($row_dio2 = mysql_fetch_assoc($dio2)); ?> </table> </div><div class="post-bot"></div> <?php } else { echo ("None Found!"); } ?> <p><a href="dadmin.php">Back to Admin Page</a></p> <!--Content Ends here--> <?php include("mainbarbottom.php"); ?> <?php include("contentbottom.php"); ?> <?php include("footbar.php"); ?> <?php include("bottom.php"); ?> </body> </html> <?php } else { include("ddadmin.php"); }?>