Файловый менеджер - Редактировать - /home/umudio/public_html/repo/editreflection.php.tar
Назад
home/umudio/public_html/OLD/editreflection.php 0000644 00000007161 14773626305 0015451 0 ustar 00 <?php session_start(); $acc=$_SESSION['acc']; $yto=$_SESSION['yto']; if(isset($acc) && ($acc=="preacherotaUmuahia=2016byto")){?> <?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 reflections 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("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">Edit Homily/Reflection</div> <p> </p> <hr /> <p style="color:#990000"><b>Edit Homily/Reflection</b></p> <form id="form1" name="form1" method="post" action="listreflections.php"> <table width="100%" cellpadding="1" cellspacing="2"> <tr valign="top"> <td style="font-weight:bold; text-align:center">Title</td> <td align="left" ><input name="titler" type="text" size="70" value="<?php echo ($row_dio['titler']); ?>" /></td></tr> <tr valign="top"><td style="font-weight:bold">Reflection For</td><td> <input name="dater" id="dater" type="text" value="<?php echo ($row_dio['dater']); ?>" size="45" readonly="readonly"> <button id="trigger1">...</button> <script type="text/javascript"> Calendar.setup( { inputField : "dater", // ID of the input field ifFormat : "%Y-%m-%d", // the date format button : "trigger1" // ID of the button } ); </script></td></tr> <tr valign="top"> <td style="font-weight:bold; text-align:center">Reflection</td> <td align="left" ><textarea name="contenter" cols="69" rows="25"> <?php $res1=$row_dio['contenter']; $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="listreflections.php">Cancel</a> <input name="editreflection" type="submit" style="font-size:12px;" id="editreflection" value=" Edit Homily/Reflection " /> <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("listreflections.php"); } ?> <?php } else { include("reflections.php"); }?>