PATH:
home2
/
pbkvidya
/
public_html
/
admin
/
Editing: update_servicedetails.php
<?php include_once('connect.php'); session_start(); // Check if the user is logged in if (!isset($_SESSION['loggedin']) || $_SESSION['loggedin'] !== true) { echo "<script type='text/javascript'>window.location.href = 'index.php';</script>"; // Redirect to login page exit(); } include_once('head.php'); ?> <head> <style type="text/css"> textarea{ width: 800px; height: 110px; border-radius: var(--bs-border-radius); } </style> </head> <?php if(isset($_GET['id'])){ $hid=$_GET['id']; } if(isset($_POST["btnServicedetailsAdd"])) { $servicedetails_title=$_POST['txtServicedetailsTitle']; $servicedetails_content=$_POST['txtServicedetailsContent']; // $filename = $_FILES["fileImg"]["name"]; // $tempname = $_FILES["fileImg"]["tmp_name"]; // if($filename==""){ // $folder=$_POST['imagepath']; // } // else { // $folder ="uploads/servicedetails/".$filename; // } // $oldfile=$_POST['imagepath']; // $newfile ="uploads/servicedetails/".$filename; $insert1 = mysqli_query($con,"UPDATE `tbl_servicedetails` SET `servicedetails_title`='$servicedetails_title',`servicedetails_content`='$servicedetails_content' WHERE servicedetails_id=$hid"); if($insert1) { // if($filename!=""){ // $fold=move_uploaded_file($tempname, $folder); // if($oldfile!=$newfile){ // unlink($oldfile); // } // } echo "<script>alert('Service details Updated');</script>"; } else{ echo "<script>alert('Updation Failed!');</script>"; } } ?> <main id="main" class="main"> <div class="pagetitle"> <nav> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href="index.html">Home</a></li> <li class="breadcrumb-item active">Update Service details</li> </ol> </nav> </div><!-- End Page Title --> <section class="section"> <div class="row"> <div class="col-lg-1"> </div> <div class="col-lg-10"> <div class="card"> <div class="card-body"> <div class="row mb-3 bord-bottom"> <div class="col-lg-5 "><h5 class="card-title">Update Service details</h5></div> <div class="col-lg-5"><h5 class="card-title"><a href="view_servicedetails.php" class="btn btn-secondary">View All Service details</a></h5></div> </div> <?php $selres = mysqli_query($con,"SELECT * FROM tbl_servicedetails WHERE servicedetails_id=$hid"); while($rowres = mysqli_fetch_array($selres)) { $sid=$rowres['service_id']; $selres1 = mysqli_query($con,"SELECT * FROM tbl_services WHERE service_id=$sid"); while($rowres1 = mysqli_fetch_array($selres1)) { ?> <!-- General Form Elements --> <form name="Formservicedetails" method="post" enctype="multipart/form-data" class="pt-20"> <div class="row mb-3"> <label for="inputText" class="col-sm-3 col-form-label">Service Name</label> <div class="col-sm-5"> <input type="text" id="txtServiceName" name="txtServiceName" value="<?php echo $rowres1['service_name']; ?>" class="form-control" readonly> </div> </div> <div class="row mb-3"> <label for="inputText" class="col-sm-3 col-form-label">Service details Title</label> <div class="col-sm-5"> <input type="text" id="txtServicedetailsTitle" name="txtServicedetailsTitle" class="form-control" value="<?php echo $rowres['servicedetails_title']; ?>" required> </div> </div> <div class="row mb-3"> <label for="inputText" class="col-sm-3 col-form-label">Service details Content</label> <div class="col-sm-5"> <textarea id="txtServicedetailsContent" name="txtServicedetailsContent" class="textarea1" required=""><?php echo $rowres['servicedetails_content']; ?></textarea> </div> </div> <div class="row mb-3"> <label class="col-sm-3 col-form-label"></label> <div class="col-sm-5 "> <input type="submit" class="btn btn-primary btn-center" name="btnServicedetailsAdd" id="btnServicedetailsAdd" value="Update"> </div> </div> </form><!-- End General Form Elements --> <?php } } ?> </div> </div> </div> <div class="col-lg-1"> </div> </div> </section> </main><!-- End #main --> <?php include_once('footer.php'); ?>
SAVE
CANCEL