-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcareers.php
94 lines (88 loc) · 2.62 KB
/
careers.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<?php include("navbar.php") ?>
<!-- Start main-content -->
<div class="main-content">
<!-- Section: inner-header -->
<section class="inner-header divider layer-overlay overlay-theme-colored-7" data-bg-img="images/bg/bg1.jpg">
<div class="container pt-120 pb-60">
<!-- Section Content -->
<div class="section-content">
<div class="row">
<div class="col-md-6">
<h2 class="text-theme-colored2 font-36">Careers</h2>
<ol class="breadcrumb text-left mt-10 white">
<li><a href="#">Home</a></li>
<li class="active">Careers</li>
</ol>
</div>
</div>
</div>
</div>
</section>
<section>
<div class="container">
<div class="row">
<?php
$query = mysqli_query($conn,"select * from career");
while($row = mysqli_fetch_array($query))
{
$function = $row['J_func'];
$role = $row['J_role'];
$roleId = $row['J_roleId'];
$skills = $row['J_skills'];
$exp = $row['J_exp'];
?>
<div class="col-md-12">
<div class="job-overview">
<h2>Job Description</h2>
<table width="100%">
<tr>
<td colspan="2"><h3><b>Job Description</b><br></h3></td>
</tr>
<tr>
<td colspan="2">Must Have Skills</td>
</tr>
<tr>
<td colspan="2"><?php echo $exp; ?></td>
</tr>
<tr>
<td><b>Job Function</b></td>
<td><?php echo $function; ?></td>
</tr>
<tr>
<td><b>Role</b></td>
<td><?php echo $exp; ?></td>
</tr>
<tr>
<td><b>Job ID</b></td>
<td><?php echo $roleId; ?></td>
</tr>
<tr>
<td><b>Desired Skills</b></td>
<td><?php echo $skills; ?></td>
</tr>
</table><br>
<h2>Desired Candidate Profile</h2>
<table>
<tr>
<td><b>Qualification:</b> BSCIT OF COMPUTER</td>
</tr>
</table>
<a class="btn btn-dark mt-20 text-white ajaxload-popup" href="ajax-load/apply-form.php">Apply Now</a>
</div>
<br>
</div>
<?php } ?>
</div>
</div>
</section>
</div>
<!-- end main-content -->
<!-- Footer -->
<?php include('footer.php');?>
<!-- end wrapper -->
<!-- Footer Scripts -->
<!-- JS | Custom script for all pages -->
<script src="js/custom.js"></script>
<script src="js/apply.js"></script>
</body>
</html>