ok
Direktori : /home/ngwcolle/public_html/admin/ |
Current File : /home/ngwcolle/public_html/admin/edit-newpage.php |
<?php session_start(); //DB conncetion include_once('includes/config.php'); //validating Session if($_GET['teamid']){ $tid=$_GET['teamid']; $cquery= mysqli_query($con,"SELECT * from tbl_page where id ='$tid'"); $singleRow = mysqli_fetch_row($cquery); } if (strlen($_SESSION['aid']==0)) { header('location:logout.php'); } else{ if(isset($_POST['submit'])) { //$pname=$_POST['dept']; $ptitle=$_POST['ptitle']; $description=$_POST['editor']; $query=mysqli_query($con, "update tbl_page set page_title='$ptitle',page_content='$description' where id='$tid'"); if ($query) { echo '<script>alert("Page Updated Successfully.")</script>'; echo "<script>window.location.href ='dashboard.php'</script>"; }else{ echo '<script>alert("Something Went Wrong. Please try again.")</script>'; } } ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <meta name="description" content=""> <meta name="author" content=""> <title> Edit New Page for Department</title> <!-- Custom fonts for this template--> <link href="vendor/fontawesome-free/css/all.min.css" rel="stylesheet" type="text/css"> <link href="https://fonts.googleapis.com/css?family=Nunito:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i" rel="stylesheet"> <!-- Custom styles for this template--> <link href="css/sb-admin-2.min.css" rel="stylesheet"> <script src="vendor/ckeditor/ckeditor.js"></script> <style type="text/css"> label{ font-size:16px; font-weight:bold; color:#000; } </style> </head> <body id="page-top"> <!-- Page Wrapper --> <div id="wrapper"> <?php include_once('includes/sidebar.php');?> <!-- Content Wrapper --> <div id="content-wrapper" class="d-flex flex-column"> <!-- Main Content --> <div id="content"> <!-- Topbar --> <?php include_once('includes/topbar.php');?> <!-- End of Topbar --> <!-- Begin Page Content --> <div class="container-fluid"> <!-- Page Heading --> <h1 class="h3 mb-4 text-gray-800">Add New Page for Specific Department</h1> <form method="post" name="adminprofile" enctype="multipart/form-data"> <div class="row"> <div class="col-lg-12 col-sm-12 col-md-12"> <!-- Basic Card Example --> <div class="card shadow mb-4"> <div class="card-body"> <!-- form starts --> <div class="container py-2"> <div class="row"> <div class="col-md-12 mx-auto"> <div class="form-group row"> <div class="col-sm-12"> <label for="inputLastname">Department Name (For Which new page is created)</label> <select name="dept" class="form-control" id="dept" required disabled> <option value="">--Select--</option> <?php $query=mysqli_query($con,"select * from tbl_dept where status=1 order by dept_name asc"); while ($category = mysqli_fetch_array($query)){ ?> <option value="<?php echo $category["id"];?>" <?php if($category['id']==$singleRow[1]) echo 'selected="selected"'; ?>><?php echo $category["dept_name"];?></option> <?php }?> </select> </div> </div> <div class="form-group row"> <div class="col-sm-12"> <label for="inputCity">Title of the Webpage</label> <!-- <textarea name="content" id="" cols="30" maxlength="2000" rows="10" class="form-control" required></textarea> --> <input type="text" class="form-control" id="inputCity" name="ptitle" placeholder="Page Title" value="<?php echo $singleRow[2];?>"> </div> </div> <div class="form-group row"> <div class="col-sm-12"> <label for="inputCity">Description About the Department</label> <textarea name="editor" id="editor" cols="30" rows="10" class="form-control" required placeholder="History/Mission/Vision etc..."><?php echo $singleRow[3];?></textarea> <!-- <input type="date" class="form-control" id="inputCity" name="cdate" placeholder="City"> --> </div> </div> <button type="submit" class="btn btn-primary px-4 float-right" name="submit">Update Page</button> </div> </div> </div> <!-- form ends --> </div> </div> </div> </div> </form> </div> <!-- /.container-fluid --> </div> <!-- End of Main Content --> <?php include_once('includes/footer.php');?> </div> <!-- End of Content Wrapper --> </div> <!-- End of Page Wrapper --> <!-- Scroll to Top Button--> <?php include_once('includes/footer2.php');?> <!-- Bootstrap core JavaScript--> <script src="vendor/jquery/jquery.min.js"></script> <script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script> <!-- Core plugin JavaScript--> <script src="vendor/jquery-easing/jquery.easing.min.js"></script> <!-- Custom scripts for all pages--> <script src="js/sb-admin-2.min.js"></script> <script> CKEDITOR.replace('editor'); </script> <!-- <script> ClassicEditor .create( document.querySelector( '#editor' ) ) .catch( error => { console.error( error ); } ); </script> --> <script> /* javascript function to validate file type */ function fileValidation() { var inputElement = document.getElementById('file-upload'); var files = inputElement.files; if(files.length==0){ alert("Please choose a file first..."); return false; }else{ var filename = files[0].name; /* getting file extenstion eg- .jpg,.png, etc */ var extension = filename.substr(filename.lastIndexOf(".")); /* define allowed file types */ var allowedExtensionsRegx = /(\.jpg|\.jpeg|\.png|\.gif|\.pdf)$/i; /* testing extension with regular expression */ var isAllowed = allowedExtensionsRegx.test(extension); if(isAllowed){ alert("File type is valid for the upload"); /* file upload logic goes here... */ }else{ alert("Invalid File Type.Choose image/PDF file Only"); inputElement.value = ''; return false; } } } </script> </body> </html> <?php } ?>