-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjob-listings.php
130 lines (122 loc) · 5.08 KB
/
job-listings.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<?php
session_start();
error_reporting(0);
include('includes/config.php');
if (strlen($_SESSION['alogin']) == 0) {
header('location:index.php');
} else {
?>
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width device-width, initial-scale=1, minimum-scale=1, maximum-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<meta name="theme-color" content="#3e454c">
<title>Job Listings</title>
<!-- Font awesome -->
<link rel="stylesheet" href="css/font-awesome.min.css">
<!-- Sandstone Bootstrap CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- Bootstrap Datatables -->
<link rel="stylesheet" href="css/dataTables.bootstrap.min.css">
<!-- Bootstrap social button library -->
<link rel="stylesheet" href="css/bootstrap-social.css">
<!-- Bootstrap select -->
<link rel="stylesheet" href="css/bootstrap-select.css">
<!-- Bootstrap file input -->
<link rel="stylesheet" href="css/fileinput.min.css">
<!-- Awesome Bootstrap checkbox -->
<link rel="stylesheet" href="css/awesome-bootstrap-checkbox.css">
<!-- Admin Style -->
<link rel="stylesheet" href="css/style.css">
<style>
th {
text-align: center;
color: #34bcaa;
}
.table {
width: 100%;
max-width: 100%;
margin-bottom: 20px;
color: #debf12;
}
</style>
</head>
<body>
<!-- Include your header and sidebar here as per your template -->
<?php include('includes/header.php'); ?>
<div class="ts-main-content">
<?php include('includes/leftbar.php'); ?>
<div class="content-wrapper">
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<h2 class="page-title">Job Listings</h2>
</br>
<div class="panel panel-default">
<div class="panel-body">
<!-- Display a table with job listings -->
<table class="table">
<thead>
<tr>
<th>Job Title</th>
<th>Company</th>
<th>Location</th>
<th>Posted Date</th>
</tr>
</thead>
<tbody>
<?php
// Retrieve and display job listings from the database
$sql = "SELECT j.job_title, e.company_name, j.location, j.created_at
FROM jobs j
JOIN employers e ON j.employer_id = e.id";
$query = $dbh->prepare($sql);
$query->execute();
$results = $query->fetchAll(PDO::FETCH_ASSOC);
if ($query->rowCount() > 0) {
foreach ($results as $result) {
echo '<tr>';
echo '<td>' . $result['job_title'] . '</td>';
echo '<td>' . $result['company_name'] . '</td>';
echo '<td>' . $result['location'] . '</td>';
echo '<td>' . $result['created_at'] . '</td>';
echo '</tr>';
}
} else {
echo '<tr><td colspan="4">No job listings found.</td></tr>';
}
?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap-select.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.dataTables.min.js"></script>
<script src="js/dataTables.bootstrap.min.js"></script>
<script src="js/Chart.min.js"></script>
<script src="js/fileinput.js"></script>
<script src="js/chartData.js"></script>
<script src="js/main.js"></script>
<script type="text/javascript">
$(document).ready(function () {
setTimeout(function () {
$('.succWrap').slideUp("slow");
}, 3000);
});
</script>
</body>
</html>
<?php
}
?>