Şuanki Dizin: /home/wwwdreamtechnolo/public_html/kpmim.org/admin/ |
Şuanki Dosya : /home/wwwdreamtechnolo/public_html/kpmim.org/admin/edit-faculty-report.php |
<?php require_once("lib/functions.php"); $db = new login_function(); $flag = 0; $actual_image_name=""; $success_msg = 0; $image_error=""; $department_error=""; $staff_error=""; $f_email =""; if(!isset($_SESSION['current_login_admin'])) { header("Location:/admin/index.php"); } if(isset($_SESSION['current_login_admin'])) { $email = $_SESSION['current_login_admin']; } if(isset($_GET['up_id'])) { $up_id = $_GET['up_id']; $_SESSION['current_update_id'] = $up_id; } else if(isset($_SESSION['current_update_id'])) { $up_id = $_SESSION['current_update_id']; } if(isset($_GET['image'])) { $image = $_GET['image']; $db->update_faculty_profile($up_id); unlink('../profile-picture/'.$image); header("Location:/admin/edit-faculty-report.php"); } if(isset($_POST['add_btn'])) { $valid_formats = array("jpg","png","gif","bmp","jpeg","pdf","JPEG","JPG","BMP","PNG","GIF","PDF"); if(isset($_POST) and $_SERVER['REQUEST_METHOD'] == "POST") { $name = $_FILES['picture']['name']; $size = $_FILES['picture']['size']; if(strlen($name)) { list($txt, $ext) = explode(".", $name); if(in_array($ext,$valid_formats)) { $files = array(); function generateRandomString($length = 10) { $characters = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'; $charactersLength = strlen($characters); $randomString = ''; for ($i = 0; $i < $length; $i++) { $randomString .= $characters[rand(0, $charactersLength - 1)]; } return $randomString; } $current_random_string = generateRandomString(); $actual_image_name = $current_random_string.".".strtolower($ext); $tmp = $_FILES['picture']['tmp_name']; $img_Dir = "../profile-picture/"; if(!file_exists($img_Dir)) { mkdir($img_Dir); } if(move_uploaded_file($tmp,$img_Dir.$actual_image_name)) { } else { $image_error = "failed" ; $flag = 1; } } else { $image_error = "Invalid file format"; $flag = 1; } } } if($flag==0) { $image_name = $db->get_faculty_image_name_by_id($up_id); if($image_name!="") { $db->update_faculty_image_info($up_id,$actual_image_name); unlink('../profile-picture/'.$image_name); }else { $db->update_faculty_image_info($up_id,$actual_image_name); } $flag = 1 ; } } if(isset($_POST['add_btn1'])) { $full_name = $_POST['full_name']; $designation = $_POST['designation']; $qualification = $_POST['qualification']; $subject = $_POST['subject']; $experience = $_POST['experience']; $f_email = $_POST['email']; $department = $_POST['department']; $staff = $_POST['staff']; $web_link = $_POST['web_link']; if($department == 'select_department') { $department_error ="Please select Department"; $flag = 1; } if($staff == 'select') { $staff_error = "Please select Teaching Staff"; $flag = 1; } if($flag == 0) { if($db->update_faculty($up_id,$full_name,$designation,$qualification,$subject,$experience,$email,$department,$staff,$actual_image_name,$web_link)) { $success_msg = 1 ; } } } $report_details = $db->get_all_faculty_info_by_id($up_id); if(!empty($report_details)) { $counter =0; $id = $report_details[$counter][0]; $full_name = $report_details[$counter][1]; $designation = $report_details[$counter][2]; $qualification = $report_details[$counter][3]; $subject = $report_details[$counter][4]; $experience = $report_details[$counter][5]; $email = $report_details[$counter][6]; $department = $report_details[$counter][7]; $staff = $report_details[$counter][8]; $image = $report_details[$counter][9]; $web_link = $report_details[$counter][10]; } ?> <?php require_once('header.php'); ?> <div id="page-wrapper"> <div class="row"> <div class="col-lg-12"> <h1 class="page-header"> Update Faculty Information</h1> <?php if($success_msg == 1) { ?> <div class="alert alert-success"> Records Update Successfully. </div> <?php } ?> </div> </div> <div class="row"> <div class="col-lg-12"> <a href="faculty-report.php"><-- Back To Report</a><br /><br /> <div class="panel panel-default"> <div class="panel-heading"> Update Faculty Information </div> <div class="panel-body"> <div class="row"> <div class="col-lg-6"> <form role="form" method="post" enctype="multipart/form-data"> <div class="form-group"> <label> Full Name</label> <input class="form-control" placeholder="Enter Full Name" name="full_name" type="text" value="<?php echo $full_name; ?>" required> </div> <div class="form-group"> <label> Designation</label> <input class="form-control" placeholder="Enter Designation" name="designation" type="text" value="<?php echo $designation; ?>" required> </div> <div class="form-group"> <label> Qualification</label> <input class="form-control" placeholder="Enter Qualification" name="qualification" type="text" value="<?php echo $qualification; ?>" required> </div> <div class="form-group"> <label> Mobile No</label> <input class="form-control" placeholder="Enter Mobile No" name="subject" type="text" value="<?php echo $subject; ?>" required> </div> <div class="form-group"> <label> Experience</label> <input class="form-control" placeholder="Enter Experience" name="experience" type="text" value="<?php echo $experience; ?>" required> </div> <div class="form-group"> <label> Email Id</label> <input class="form-control" placeholder="Enter Email Id" name="email" type="text" value="<?php echo $f_email; ?>" > </div> <div class="form-group"> <label> Department </label> <select class="form-control" placeholder="Enter Department" name="department" required> <?php if($department != "") { ?> <option value="<?php echo $department; ?>"><?php echo $department; ?></option> <?php } ?> <option value="select_department">Select Department</option> <option value="Computer Science Engineering">Computer Science Engineering</option> <option value="Mechanical Engineering"> Mechanical Engineering</option> <option value="Electrical Engineering"> Electrical Engineering</option> <option value="Electronics and Telecommunication Engineering"> Electronics & Telecommunication Engineering</option> <option value="Gerneral Science & Engg. Department"> Gerneral Science & Engg. Department</option> <option value="MBA Department"> MBA Department</option> <option value="Administrative"> Administrative Department</option> </select> <span style="color:red;"><?php echo $department_error; ?></span> </div> <div class="form-group"> <label> Teaching Staff</label> <select class="form-control" placeholder="Enter Teaching Staff" name="staff" required> <?php if($staff != "") { ?> <option value="<?php echo $staff; ?>"><?php echo $staff; ?></option> <?php } ?> <option value="select">Select Teaching Staff</option> <option value="Teaching">Teaching Staff</option> <option value="Non-Teaching"> Non - Teaching Staff</option> </select> <span style="color:red;"><?php echo $staff_error; ?></span> </div> <div class="form-group"> <label>Website Link </label> <input class="form-control" placeholder="Website Link" required name="web_link" type="text" value="<?php echo $web_link; ?>"> </div> <button type="submit" class="btn btn-success" name="add_btn1">Update</button> <br /><br /> </form> <form role="form" method="post" enctype="multipart/form-data"> <div class="form-group"> <label> Profile Picture</label> <br /><br /> <?php if($image != "") { ?> <a href="/profile-picture/<?php echo $image; ?>" target="_blank"><img src="/profile-picture/<?php echo $image; ?>" height="50px" width="50px" title="view"></a><br /><br /> <?php } else { ?> <img src="/images/no_image_available.png" style="height:90px;width:90px;" /><br /><br /> <?php } ?> <label><a href="edit-faculty-report.php?u_id=<?php echo $id; ?>&image=<?php echo $image; ?>">Remove Image</a></label> <br /><br /> <input class="form-control" placeholder="Enter Name" name="picture" type="file" required> <span style="color:red;"><?php echo $image_error; ?></span> </div> <button type="submit" class="btn btn-success" name="add_btn">Update</button> <br /><br /> </form> </div> </div> </div> </div> </div> </div> </div> </div> </body> </html>
Linux 65-254-81-4.cprapid.com 5.14.0-284.11.1.el9_2.x86_64 #1 SMP PREEMPT_DYNAMIC Tue May 9 05:49:00 EDT 2023 x86_64
Apache
65.254.81.4