ok
Direktori : /home/ngwcolle/public_html/admin/ |
Current File : /home/ngwcolle/public_html/admin/add-teacher.php |
<?php session_start(); //DB conncetion //error_reporting(E_ALL); include_once('includes/config.php'); //validating Session if (strlen($_SESSION['aid']==0)) { header('location:logout.php'); } else{ function imageResize($imageResourceId,$width,$height) { $targetWidth = 290; $targetHeight = 330; $targetLayer=imagecreatetruecolor($targetWidth,$targetHeight); imagecopyresampled($targetLayer,$imageResourceId,0,0,0,0,$targetWidth,$targetHeight, $width,$height); return $targetLayer; } if(isset($_POST['submit'])) { $tname=strtoupper($_POST['pname']); $desgnation=$_POST['designation']; $doj=$_POST['doj']; $email=$_POST['email']; $eduqual=strtoupper($_POST['qual']); $areaexpertise=$_POST['sarea']; $achievements=$_POST['eduachv']; $research_area=$_POST['rearea']; $dept=$_POST['dept']; $publication=$_POST['publication']; $socialid=$_POST['socid']; $contact=$_POST['contact']; $check=mysqli_query($con,"select * from tbl_teacher where tname='$tname' and status='1'"); $checkrows=mysqli_num_rows($check); if($checkrows>0) { echo '<script>alert("Teacher is still active in this College. Exit first!!!!.")</script>'; } else { //photo upload area // image resize script if(is_array($_FILES)){ $file = $_FILES['cdate']['tmp_name']; $sourceProperties = getimagesize($file); $fileNewName = time().$_FILES['cdate']['name']; $folderPath = "../upload/teacher/"; $ext = pathinfo($_FILES['cdate']['name'], PATHINFO_EXTENSION); $imageType = $sourceProperties[2]; switch ($imageType) { case IMAGETYPE_PNG: $imageResourceId = imagecreatefrompng($file); $targetLayer = imageResize($imageResourceId,$sourceProperties[0],$sourceProperties[1]); // imagepng($targetLayer,$folderPath. $fileNewName. "_thump.". $ext); imagepng($targetLayer,$folderPath. $fileNewName); break; case IMAGETYPE_GIF: $imageResourceId = imagecreatefromgif($file); $targetLayer = imageResize($imageResourceId,$sourceProperties[0],$sourceProperties[1]); // imagegif($targetLayer,$folderPath. $fileNewName. "_thump.". $ext); imagepng($targetLayer,$folderPath. $fileNewName); break; case IMAGETYPE_JPEG: $imageResourceId = imagecreatefromjpeg($file); $targetLayer = imageResize($imageResourceId,$sourceProperties[0],$sourceProperties[1]); // imagejpeg($targetLayer,$folderPath. $fileNewName. "_thump.". $ext); imagepng($targetLayer,$folderPath. $fileNewName); break; default: echo "Invalid Image type."; exit; break; } // move_uploaded_file($file, $folderPath.$fileNewName. ".". $ext); // unlink($folderPath.$fileNewName. ".". $ext); // echo "Image Resize Successfully."; } // image resize //photoupload ends // if(move_uploaded_file($file, $folderPath.$fileNewName. ".". $ext)) if(move_uploaded_file($file, $folderPath.$fileNewName. ".". $ext)) { unlink($folderPath.$fileNewName. ".". $ext); $query=mysqli_query($con, "insert into tbl_teacher(tname,disgnation,email,contact,eduqual,areaexpertise,achievements,research_area,dept,publication,doj,socialid,photopath) values('$tname','$desgnation','$email','$contact','$eduqual','$areaexpertise','$achievements','$research_area','$dept','$publication','$doj','$socialid','$fileNewName')"); if ($query) { echo '<script>alert("Teacher Added Successfully to College.")</script>'; echo "<script>window.location.href ='manage-teacher.php'</script>"; } else { echo '<script>alert("Something Went Wrong. Please try again.")</script>'; } } else { echo "Failed to upload file."; } } } ?> <!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> Join New Teacher</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"> <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">New Teacher Joining</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-6"> <label for="inputFirstname">Name of the Teacher</label> <input type="text" class="form-control" id="inputFirstname" name="pname" required placeholder="Name of the Teacher"> </div> <div class="col-sm-6"> <label for="inputLastname">Date of joining</label> <input type="date" class="form-control" name="doj" id="inputAddressLine1" required> </div> </div> <div class="form-group row"> <div class="col-sm-6"> <label for="inputAddressLine1">Designation</label> <input type="text" class="form-control" required name="designation" id="inputAddressLine1" placeholder="Qualification"> </div> <div class="col-sm-6"> <label for="inputAddressLine2">Subject Department</label> <select name="dept" class="form-control" id="dept" required> <option value="">--Select Subject--</option> <?php $query=mysqli_query($con,"select * from tbl_subject order by subname asc "); while ($category = mysqli_fetch_array($query)){ ?> <option value="<?php echo $category["id"];?>"><?php echo $category["subname"];?></option> <?php }?> </select> <!-- <input type="number" class="form-control" required name="dept" id="inputAddressLine1" placeholder="Contact Details"> --> </div> </div> <div class="form-group row"> <div class="col-sm-6"> <label for="inputAddressLine1">Highest Qualification</label> <input type="text" class="form-control" required name="qual" id="inputAddressLine1" placeholder="Qualification"> </div> <div class="col-sm-6"> <label for="inputAddressLine1">Area of Specialization</label> <input type="text" class="form-control" required name="sarea" id="inputAddressLine1" placeholder="Specialization"> </div> </div> <div class="form-group row"> <div class="col-sm-6"> <label for="inputAddressLine1">Contact No.</label> <input type="text" class="form-control" required name="contact" id="inputAddressLine1" placeholder="Specialization"> </div> <div class="col-sm-6"> <label for="inputAddressLine2">Email-ID.</label> <input type="email" class="form-control" required name="email" id="inputAddressLine1" placeholder="Years of Experience"> </div> </div> <div class="form-group row"> <div class="col-sm-12"> <label for="inputCity">Education Achievements</label> <textarea name="eduachv" id="" cols="30" rows="2" required class="form-control"></textarea> <!-- <input type="date" class="form-control" id="inputCity" name="cdate" placeholder="City"> --> </div> </div> <div class="form-group row"> <div class="col-sm-12"> <label for="inputCity">Research Area</label> <textarea name="rearea" id="" cols="30" rows="2" required class="form-control"></textarea> <!-- <input type="date" class="form-control" id="inputCity" name="cdate" placeholder="City"> --> </div> </div> <div class="form-group row"> <div class="col-sm-12"> <label for="inputCity">Publications</label> <textarea name="publication" id="" cols="30" rows="2" required class="form-control"></textarea> <!-- <input type="date" class="form-control" id="inputCity" name="cdate" placeholder="City"> --> </div> </div> <div class="form-group row"> <div class="col-sm-6"> <label for="inputAddressLine1">Social Networking Connection</label> <input type="text" class="form-control" required name="socid" id="inputAddressLine1" placeholder="Specialization"> </div> <div class="col-sm-6"> <label for="inputAddressLine2">Upload Photograph</label> <input type="file" class="form-control" id="file-upload" required name="cdate" onchange="return fileValidation()" placeholder="Years of Experience"> </div> </div> <button type="submit" class="btn btn-primary px-4 float-right" name="submit">Save</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> $(document).ready(function () { var counter = 0; $("#addrow").on("click", function () { // alert("ff"); var newRow = $("<tr>"); var cols = ""; cols += '<td><input type="text" class="form-control" name="name' + counter + '"/></td>'; cols += '<td><input type="text" class="form-control" name="mail' + counter + '"/></td>'; cols += '<td><input type="text" class="form-control" name="phone' + counter + '"/></td>'; cols += '<td><input type="button" class="ibtnDel btn btn-md btn-danger " value="Delete"></td>'; newRow.append(cols); $("table.order-list").append(newRow); counter++; }); $("table.order-list").on("click", ".ibtnDel", function (event) { $(this).closest("tr").remove(); counter -= 1 }); }); </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)$/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/Photo file Only"); inputElement.value = ''; return false; } } } </script> </body> </html> <?php } ?>