Файловый менеджер - Редактировать - /home/umudio/public_html/repo/editinstitution.php.tar
Назад
home/umudio/public_html/OLD/editinstitution.php 0000644 00000010671 14773626156 0015714 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['tab'])) { unset($temp); if(isset($_GET['tab'])){ $_GET['tab']=trim($_GET['tab']); if(preg_match('/^[0-9]/u',$_GET['tab'])){ settype($_GET['tab'], 'int'); $temp=(int)$_GET['tab']; } } if(!isset($temp)){echo "Sorry! Wrong Data!"; exit();} $editab=$temp; $query_dio=sprintf("select * from institutions where sn REGEXP %s", mysql_real_escape_string($editab)); $dio = mysql_query($query_dio, $csn) or die(mysql_error()); $row_dio = mysql_fetch_assoc($dio); $totalRows_dio = mysql_num_rows($dio); ?> <!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("editor.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">Edit Institution</div> <p> </p> <form action="dadmin.php" method="post" name="form1" id="form1"> <table width="100%"> <tr valign="top"><td width="150" style="font-weight:bold; text-align:right">Name / Address</td> <td ><textarea name="nameadd" id="nameadd" cols="54" rows="10"><?php $res1=$row_dio['nameadd']; $new_string=urldecode ($res1); $new_string=ereg_replace(""", "%22", $new_string); $new_string=ereg_replace("'", "%27", $new_string); $res1=urldecode ($new_string); echo $res1; ?></textarea></td></tr> <tr valign="top"><td style="font-weight:bold; text-align:right">Status</td> <td ><select name="status" id="status"> <option value="<?php echo ($row_dio['status']); ?>" selected="selected"><?php echo ($row_dio['status']); ?></option> <option value="Secondary School">Secondary School</option> <option value="Primary/Nursery School">Primary/Nursery School</option> <option value="Tertiary Institution">Tertiary Institution</option> <option value="Health Institution">Health Institution</option> <option value="Pastoral/Vocational/Social Institution">Pastoral/Vocational/Social Institution</option> <option value="Ecclesiastical Establishment">Ecclesiastical Establishment</option> <option value="Other Establishment">Other Establishment</option> <option value="Seminary/Formation House">Seminary/Formation House</option> <option value="Media House">Media House</option> <option value="Book Centre">Book Centre</option> <option value="Chaplaincy">Chaplaincy</option> </select> </td></tr> <tr valign="top"><td width="150" style="font-weight:bold; text-align:right">Other Details</td> <td ><textarea name="details" id="details" cols="54" rows="10"><?php $res1=$row_dio['details']; $new_string=urldecode ($res1); $new_string=ereg_replace(""", "%22", $new_string); $new_string=ereg_replace("'", "%27", $new_string); $res1=urldecode ($new_string); echo $res1; ?></textarea></td></tr> <tr valign="top"> <td style="text-align:right; font-size:10px;" colspan="2"><a href="dadmin.php">Cancel</a> <input name="editinstitution" type="submit" id="editinstitution" value=" Edit Record " /> <input name="sn" type="hidden" value="<?php echo ($row_dio['sn']); ?>" /> </td> </tr> </table> </form> <!--Content Ends here--> <?php include("mainbarbottom.php"); ?> <?php include("contentbottom.php"); ?> <?php include("footbar.php"); ?> <?php include("bottom.php"); ?> </body> </html> <?php } else { include("dadmin.php"); } ?> <?php } else { include("ddadmin.php"); }?>