D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
vitalityhealth
/
www
/
s
/
Filename :
edit-faq1.php
back
Copy
<?php include 'cn.php'; session_start(); $sno=$_GET["id"]; $sql = "SELECT * FROM faq WHERE id='$sno'" ; $result = $con->query($sql); $row = $result->fetch_assoc(); $name=$_SESSION['username']; if(isset($_SESSION['username'])) { if(isset($_POST['submit'])) { date_default_timezone_set('Asia/Kolkata'); $curdate= date('d-m-Y H:i'); if($_FILES['file1']['name']==''){ $f1 = $row['image']; }else{ $f1 = $_FILES['file1']['name']; move_uploaded_file($_FILES['file1']['tmp_name'],'service/'.$f1); } $question= addslashes($_POST['question']); $answer= addslashes($_POST['content']); $title= addslashes($_POST['title']); /* echo $imageName; echo $_POST['name']; echo $_POST['price']; echo $_POST['category']; echo $_POST['description']; echo $_POST['pid'];die;*/ $query1 ="UPDATE `faq` SET `title`='".$title."',`question`='".$question."',`answer`='".$answer."' WHERE id='$sno'"; $result=mysqli_query($con,$query1); echo "<script type='text/javascript'>alert(\"Updated Successfully\") location.href='faq.php'; </script>"; } ?> <!doctype html><html class="fixed dark" data-style-switcher-options="{'backgroundColor': 'dark'}"> <head> <!-- Basic --> <meta charset="UTF-8"> <title>Done Mortgage</title> <!-- Mobile Metas --> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <!-- Web Fonts --> <link href="css?family=Poppins:300,400,500,600,700,800|Shadows+Into+Light" rel="stylesheet" type="text/css"> <!-- Vendor CSS --> <link rel="stylesheet" href="vendor/bootstrap/css/bootstrap.css"> <link rel="stylesheet" href="vendor/animate/animate.compat.css"> <link rel="stylesheet" href="vendor/font-awesome/css/all.min.css"> <link rel="stylesheet" href="vendor/boxicons/css/boxicons.min.css"> <link rel="stylesheet" href="vendor/magnific-popup/magnific-popup.css"> <link rel="stylesheet" href="vendor/bootstrap-datepicker/css/bootstrap-datepicker3.css"> <!-- Specific Page Vendor CSS --> <!-- Theme CSS --> <link rel="stylesheet" href="css/theme.css"> <!-- Theme Custom CSS --> <link rel="stylesheet" href="css/custom.css"> <!-- Head Libs --> <script src="vendor/modernizr/modernizr.js"></script> <script src="master/style-switcher/style.switcher.localstorage.js"></script> </head> <body> <section class="body"> <!-- start: header --> <?php include("header.php"); ?> <!-- end: header --> <div class="inner-wrapper"> <!-- start: sidebar --> <?php include("leftnav.php"); ?> <!-- end: sidebar --> <section role="main" class="content-body card-margin"> <header class="page-header"> <h2>Edit FAQ</h2> <div class="right-wrapper text-end"> <ol class="breadcrumbs"> <li> <a href="index.php"> <i class="bx bx-home-alt"></i> </a> </li> <li><span>Edit FAQ</span></li> </ol> <a class="sidebar-right-toggle" data-open="sidebar-right"><i class="fas fa-chevron-left"></i></a> </div> </header> <!-- start: page --> <div class="row"> <div class="col-lg-12"> <section class="card"> <header class="card-header"> <div class="card-actions"> <a href="#" class="card-action card-action-toggle" data-card-toggle=""></a> </div> <h2 class="card-title">Edit FAQ</h2> </header> <form action="" method="post" enctype="multipart/form-data"> <div class="card-body"> <div class="row form-group pb-3"> <div class="col-lg-6"> <div class="form-group"> <label class="col-form-label" for="formGroupExampleInput">Title (Do not place any space & enter only alphabets)</label> <input type="text" class="form-control" name="title" placeholder="" required value="<?php echo $row['title']; ?>"> </div> </div> <div class="col-lg-6"> <div class="form-group"> <label class="col-form-label" for="formGroupExampleInput">Question</label> <input type="text" class="form-control" name="question" placeholder="" required value="<?php echo $row['question']; ?>"> </div> </div> <div class="col-lg-12"> <div class="form-group"> <label class="col-form-label" for="formGroupExampleInput">Content</label> <textarea id="editor" name="content" > <?php echo $row['answer']; ?> </textarea> <!--<textarea name="content" data-plugin-markdown-editor="" rows="10" placeholder="Place Content Here" value="<?php echo $row['answer']; ?>"><?php echo $row['answer']; ?></textarea>--> </div> </div> </div> </div> <footer class="card-footer text-end"> <center> <button class="mb-1 mt-1 me-1 btn btn-success" name="submit">Submit</button></center> </footer> </form> </section> </div> </div> <!-- end: page --> </section> </div> <?php include("rightnav.php"); ?> </section> <!-- Vendor --> <script src="vendor/jquery/jquery.js"></script> <!-- Theme Base, Components and Settings --> <!-- Analytics to Track Preview Website --> <script src="https://cdn.ckeditor.com/4.16.2/standard/ckeditor.js"></script> <link rel="stylesheet" href="https://cdn.ckeditor.com/4.16.2/standard/ckeditor.css"> <script> $(function(){ CKEDITOR.replace('editor', { filebrowserUploadUrl: 'upload-file.php', filebrowserUploadMethod: 'form' }); }) </script> </body> </html> <?php } else { header("location:login.php"); } ?>