D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
shubmkcj
/
designpitara.com
/
admin
/
job-post
/
Filename :
job-enquiry.php
back
Copy
<?php include("../include/config.php"); include("../include/sessionhandle.php"); include("../include/header.php"); ?> <style> #job_post ul li:nth-child(3) { background-color: #eb6a4e; } #job_post ul li:nth-child(3) a { color: #fff; } #job_post ul li:nth-child(3) a:hover { background-color: #eb6a4e; } #srkproperty_details .course-detailsa img { width: 100% !important; max-height: 250px !important; } </style> <script> window.onload = function() { document.getElementById('job_post').classList.add("active"); document.getElementById('job_post1').classList.add("in"); }; </script> <div class="small-header"> <div class="hpanel"> <div class="panel-body"> <div id="hbreadcrumb" class="pull-right"> <ol class="hbreadcrumb breadcrumb"> <li><a href="<?php echo $admin_baseurl . 'dashboard.php';?>">Dashboard</a></li> <li class="active"> <span>Jobs</span> </li> </ol> </div> <h2 class="font-light m-b-xs"> Job Enquiry </h2> </div> </div> </div> <div class="content"> <div class="hpanel"> <div class="panel-heading hbuilt"> <div class="panel-tools"> <a class="showhide"><i class="fa fa-chevron-up"></i></a> <a class="fullscreen"><i class="fa fa-expand"></i></a> </div> View All job Enquiry </div> <div class="panel-body"> <div class="table-responsive"> <table id="userPermission_dataTable" class="table table-striped table-bordered table-hover"> <thead> <tr> <th>#</th> <th>Candidate Summary</th> <th>Job Position</th> <th>Resume</th> <th>Message</th> <th>Action</th> </tr> </thead> <tbody> <?php $srno = 0; $sqlAssign1 = "SELECT * FROM `apply_jobs_post` ORDER BY `apply_jobs_post`.`id` DESC"; // echo $sqlAssign1; $resultAssign1 = mysqli_query($conn, $sqlAssign1); if (mysqli_num_rows($resultAssign1) > 0) { while($rows = mysqli_fetch_assoc($resultAssign1)) { $id = $rows['id']; $job_id = $rows['job_id']; $rname = $rows['name']; $remail = $rows['email']; $rphone = $rows['phone']; $rmessage = $rows['messg']; $rresume = $rows['resume_file']; $t_status = $rows['status']; $sqlAssign12 = "SELECT * FROM `job_post` WHERE `job_post`.`id` ='$job_id'"; // echo $sqlAssign1; $resultAssign12 = mysqli_query($conn, $sqlAssign12); if (mysqli_num_rows($resultAssign12) > 0) { while($rows2 = mysqli_fetch_assoc($resultAssign12)) { $rjob_title = $rows2['job_title']; } } ?> <tr> <th scope="row"><?php echo $srno += 1;?></th> <td style="text-align:left"> <p><b>Name : </b><?php echo $rname;?></p> <br> <p><b>Email : </b><?php echo $remail;?></p> <br> <p><b>Phone : </b><?php echo $rphone;?></p> </td> <td><?php echo $rjob_title;?></td> <td> <a href="<?php echo $main_baseurl . "career/upload/".$rresume ;?>" download>Download</a> </td> <td> <a type="button" course-details='<?php echo $rmessage;?>' data-toggle="modal" data-target="#srkproperty_details" class="btn theme-btn show_property_details" style="cursor: pointer;">More Detail</a> </td> <td> <div class="action_btns"> <!-- <form method="post" action="update-jobs-details.php?id=<?php echo $id;?>"> <button type="submit" class="actionbtn"><i class="fa fa-pencil-square-o text-success" aria-hidden="true"></i></button> </form> --> <form method="post" action="execute-jobs-enquiry.php?id=<?php echo $id;?>"> <button type="submit" name="delete_jobs_enquiry" class="actionbtn" onclick="return confirm('Do you want to delete this data?')"><i class="fa fa-trash text-danger" aria-hidden="true"></i></button> </form> <?php if($t_status == 'active'){?> <form method="post" action="execute-jobs-enquiry.php?id=<?php echo $id;?>"> <button type="submit" name="status_deactive_jobs" class="actionbtn"><i class="fa fa-toggle-on text-success" aria-hidden="true"></i></button> </form> <?php }else{?> <form method="post" action="execute-jobs-enquiry.php?id=<?php echo $id;?>"> <button type="submit" name="status_active_jobs" class="actionbtn"><i class="fa fa-toggle-off text-danger" aria-hidden="true"></i></button> </form> <?php }?> </div> </td> </tr> <?php }}?> </tbody> </table> </div> </div> </div> </div> <br> <?php include('../include/footer.php'); ?>