Mini Shell

Direktori : /home/rizant5/public_html-1210/admin/
Upload File :
Current File : /home/rizant5/public_html-1210/admin/topic-edit.php

<?php 
require_once("../config.php");
require_once("function-file.php");
require_once("function-menu.php");
cookiecheck();
$subid=$_GET['subid'];
$topic_id=$_GET['topic_id'];
$datas=$conn->prepare("select * from topics where topic_id='$topic_id'");
$datas->execute();$result=$datas->fetch();
if(isset($_POST['save'])){
	$topic_name=$_POST['topic_name'];
	$topic_desc=$_POST['topic_desc'];
	$video_url=$_POST['video_url'];
	$conn->exec("UPDATE topics SET topic_name='$topic_name',topic_desc='$topic_desc',video_url='$video_url' where topic_id='$topic_id'");
	header("location:chapters.php?subid=$subid");
}
?>
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <title>Edit Topic</title>
    <!-- Tell the browser to be responsive to screen width -->
    <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
    <?php  cssfile();?>
  </head>
  <body class="hold-transition skin-blue layout-top-nav">
    <!-- Site wrapper -->
    <div class="wrapper">
<?php headermenu();?>
      <!-- =============================================== -->
      <!-- Content Wrapper. Contains page content -->
      <div class="content-wrapper">
        <!-- Content Header (Page header) -->
        <!-- Main content -->
        <section class="content">
          <!-- Default box -->
          <div class="box">
            <div class="box-header with-border">
              <h3 class="box-title">Edit Topic</h3>
              <div class="box-tools pull-right">
                <a href="chapters.php?subid=<?php echo $subid;?>" class="btn btn-info btn-sm" ><i class="fa fa-angle-double-left"></i> Back</a>
              </div>
            </div>
            <div class="box-body">
            <form action="#" method="post" role="form" class="form-horizontal">
               <div class="form-group">
              		<div class="col-sm-6"><label>Topic Name <span class="required">*</span></label><input name="topic_name" class="form-control" placeholder="Enter Topic Name" required  value="<?php echo $result['topic_name'];?>"></div>
                    <div class="col-sm-6"><label>Embed Video</label><textarea name="video_url" class="form-control"/><?php echo $result['video_url'];?></textarea></div>
              </div>
              <div class="form-group">
              		
              		<div class="col-sm-6"><label>Topic Description</label>
                    <textarea name="topic_desc" id="editor1" class="form-control editor1" rows="4"><?php echo $result['topic_desc'];?></textarea></div>
                    <div class="col-sm-6"><?php echo $result['video_url'];?></div>
              </div>
              <div class="form-group">
              		<div class="col-sm-12" align="right">
                    <button type="reset"  class="btn btn-default" rows="4">Reset</button>&nbsp;&nbsp;
                    <button  type="submit" name="save" class="btn btn-success" >Save</button></div>
              </div>
            </div><!-- /.box-body -->
          </div><!-- /.box -->
        </section><!-- /.content -->
      </div></div><!-- /.content-wrapper -->
      <?php footer();?>
    </div><!-- ./wrapper -->
   <?php jsfile();ratenum();?>
    <!--<script src="https://cdn.ckeditor.com/4.4.3/standard/ckeditor.js"></script>
    <script>
     // $(function () {
        // Replace the <textarea id="editor1"> with a CKEditor
        // instance, using default configuration.
      //  CKEDITOR.replace('editor1');
        //bootstrap WYSIHTML5 - text editor
      //  $(".textarea").wysihtml5();
    //  });
     </script>-->
         <script src="//cdn.ckeditor.com/4.5.8/full/ckeditor.js"></script>
<script>
$(function() {
  $('.editor1').each(function(){
    CKEDITOR.replace( $(this).attr('id') );
  });
});
</script>
  </body>
</html>

Zerion Mini Shell 1.0