Advertisement
tjromano

edit_memo_form

Oct 23rd, 2012
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.61 KB | None | 0 0
  1. <?php
  2. session_cache_limiter();
  3. session_start();
  4. error_reporting(E_ALL);
  5. ini_set('display_errors',1);
  6.  
  7. require('config.php');
  8. require('functions.php');
  9.  
  10. //check for administrative rights
  11. if (allow_access('Administrators') != "yes")
  12. {
  13.     include ('no_access.html');
  14.     exit;
  15. }
  16.  
  17. //Get the id from the previous page
  18. $id_memos=$_GET['id_memos'];
  19.  
  20. $sql="SELECT * FROM `memos` WHERE id_memos='$id_memos'";
  21. $result=mysql_query($sql);
  22. $rows=mysql_fetch_array($result);
  23.  
  24.  
  25. //Set up Checkbox
  26. $act="";
  27.  
  28. if($row['memos_active'] == 1) {$act = 'checked="checked"';}
  29.  
  30. $title='Edit This Memo';
  31. include 'ctts_header.php';
  32.  
  33. ?><head>
  34. <script type="text/javascript">
  35.             $(function(){
  36.  
  37.                 // Datepicker
  38.                 $('#start_date').datepicker({
  39.                     inline: true,
  40.                 dateFormat: "yy-mm-dd"
  41.                 });
  42.                 // Datepicker
  43.                 $('#end_date').datepicker({
  44.                     inline: true,
  45.                 dateFormat: "yy-mm-dd"
  46.                 });
  47.                 // Datepicker
  48.                 $('#inspect_exp').datepicker({
  49.                     inline: true,
  50.                 dateFormat: "yy-mm-dd"
  51.                 });
  52.                 // Datepicker
  53.                 $('#regist_exp').datepicker({
  54.                     inline: true,
  55.                 dateFormat: "yy-mm-dd"
  56.                 });
  57.                 // Datepicker
  58.                 $('#memo_date').datepicker({
  59.                     inline: true,
  60.                 dateFormat: "yy-mm-dd"
  61.                 });
  62.                
  63.                 // Timepicker Only
  64.                 $('#time_in').timepicker({
  65.                     ampm: true,
  66.                     });
  67.                 $('#time_out').timepicker({
  68.                     ampm: true,
  69.                     });
  70.                    
  71.                 //hover states on the static widgets
  72.                 $('#dialog_link, ul#icons li').hover(
  73.                     function() { $(this).addClass('ui-state-hover'); },
  74.                     function() { $(this).removeClass('ui-state-hover'); }
  75.                 );
  76.                
  77.             });
  78.                            
  79.         </script>
  80.         </head>
  81.    
  82. <div id="content">
  83.         <h2>Edit This Memo</h2>
  84.         <form action="update_memo.php" method="post" name="form1" id="form1">
  85.   <table align="left">
  86.     <tr valign="baseline">
  87.      <td><input type="hidden" name="id_memos" value="<?php echo $rows['id_memos']; ?>" /></td>
  88.     </tr>
  89.     <tr valign="baseline">
  90.       <td nowrap="nowrap" align="right" valign="top">Memo:</td>
  91.       <td><textarea name="memo" cols="50" rows="5"><?php echo $rows['memo']; ?></textarea></td>
  92.     </tr>
  93.     <tr valign="baseline">
  94.       <td nowrap="nowrap" align="right">Active:</td>
  95.       <td><input name="memos_active" type="checkbox" value="1" checked="checked"<?php echo $act; ?> /></td>
  96.     </tr>
  97.     <tr valign="baseline">
  98.       <td nowrap="nowrap" align="right">&nbsp;</td>
  99.       <td><input class="button" type="submit" name="submit" value="Save Changes" /></td>
  100.     </tr>
  101.   </table>
  102. </form>
  103.         </form>
  104. <!-- end .content --></div>
  105. <!-- end content-container --></div>
  106. <?php include 'footer.php'; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement