-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfor.hire.php
35 lines (35 loc) · 1.53 KB
/
for.hire.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
<head>
<title>Hire | The Hub </title>
</head>
<!-- intro section -->
<div id="hireMe" class="text-xs-center">
<div class="text-center" id="intro-section">
<img src="img/thehub.ico.jpg" width="60" height="60">
<div class="col-md-6 container">
<h2>Find a job here</h2>
<p>Are you looking to find work? Post your ad and make companies find you.</p>
<button class="btn btn-md green" type="submit"><a href="hire.form.php" onmouseover="toastr.info('Click here to make yourself available for hire.');" style="color: white;">Post your ad here</a></button>
</div>
</div><hr>
</div>
<div class="container-fluid">
<?php
include 'connect.php';
$sql= "SELECT * FROM job_ad ORDER BY id DESC";
$result = mysqli_query($link, $sql);
while (@$row = mysqli_fetch_array($result)) {
echo '
<div class="col-md-6">
<div class="card card-block">
<h3 style="font-size: 12px;">First Name: <strong>'.$row['first_name'].'</strong></h3>
<h3 style="font-size: 12px;">Last Name: <strong>'.$row['last_name'].'</h3><hr>
<h3 style="font-size: 12px;">Email: <strong>'.$row['email'].'</strong></h3>
<h3 style="font-size: 12px;">Telephone: <strong>'.$row['phone'].'</strong></h3>
<h3 style="font-size: 12px;">Location: <strong>'.$row['location'].'</strong></h3><hr>
<h3 style="font-size: 12px;">Skill: <strong>'.$row['skill'].'</strong></h3>
<h3 style="font-size: 12px;">Additions: <strong>'.$row['text1'].'</strong></h3>
</div>
</div><hr>';
}
?>
</div>