D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
vitalityhealth
/
public_html
/
s
/
Filename :
edit-service.php
back
Copy
<?php include 'cn.php'; session_start(); $sno=$_GET["id"]; $sql = "SELECT * FROM service 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); } $category= addslashes($_POST['category']); $name= addslashes($_POST['name']); $dec= addslashes($_POST['content']); $metadecription= addslashes($_POST['metadescription']); /* echo $imageName; echo $_POST['name']; echo $_POST['price']; echo $_POST['category']; echo $_POST['description']; echo $_POST['pid'];die;*/ $query1 ="UPDATE `service` SET `name`='".$name."',`image`='".$f1."',`category`='".$category."',`serdesc`='".$dec."' WHERE id='$sno'"; $result=mysqli_query($con,$query1); echo "<script type='text/javascript'>alert(\"Updated Successfully\") location.href='services.php'; </script>"; } ?> <!doctype html><html class="fixed dark" data-style-switcher-options="{'backgroundColor': 'dark'}"> <head> <!-- Basic --> <meta charset="UTF-8"> <title>Admin Panel</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 Service</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 Service</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 Service</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-4"> <div class="form-group"> <label class="col-form-label" for="formGroupExampleInput">Name</label> <input type="text" class="form-control" name="name" placeholder="" required value="<?php echo $row['name']; ?>"> </div> </div> <div class="col-lg-4"> <div class="form-group"> <label class="col-form-label" for="formGroupExampleInput">Image</label> <input type="file" class="form-control" name="file1" id="file1" > <img src="service/<?php echo $row['image']; ?>" style="width:100px;height:100px;"/> </div> </div> <div class="col-lg-4"> <div class="form-group"> <label class="col-form-label" for="formGroupExampleInput">Category</label> <select class="form-control" name="category" required> <option value="<?php echo $row['category']; ?>"><?php echo $row['category']; ?></option> <option value="Holistic">Holistic</option> <option value="Medical">Medical</option> </select> </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['serdesc']; ?> </textarea> <!--<textarea name="content" data-plugin-markdown-editor="" rows="10" placeholder="Place Content Here" value="<?php echo $row['serdesc']; ?>"><?php echo $row['serdesc']; ?></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"); } ?>