-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathview-employer-details.php
132 lines (109 loc) · 4.35 KB
/
view-employer-details.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
131
132
<?php
session_start();
error_reporting(0);
include('includes/dbconnection.php');
if (strlen($_SESSION['jpaid']==0)) {
header('location:logout.php');
} else{
?>
<!doctype html>
<html lang="en" class="no-focus"> <!--<![endif]-->
<head>
<title>Job Portal - View Employer Detail</title>
<link rel="stylesheet" id="css-main" href="assets/css/codebase.min.css">
</head>
<body>
<div id="page-container" class="sidebar-o sidebar-inverse side-scroll page-header-fixed main-content-narrow">
<?php include_once('includes/sidebar.php');?>
<?php include_once('includes/header.php');?>
<!-- Main Container -->
<main id="main-container">
<!-- Page Content -->
<div class="content">
<!-- Register Forms -->
<h2 class="content-heading">View Employer Details</h2>
<div class="row">
<div class="col-md-12">
<!-- Bootstrap Register -->
<div class="block block-themed">
<div class="block-header bg-gd-emerald">
<h3 class="block-title">View Employer Details</h3>
</div>
<div class="block-content">
<?php
$vid=$_GET['viewid'];
$sql="SELECT * from tblemployers where id=:vid";
$query = $dbh -> prepare($sql);
$query-> bindParam(':vid', $vid, PDO::PARAM_STR);
$query->execute();
$results=$query->fetchAll(PDO::FETCH_OBJ);
$cnt=1;
if($query->rowCount() > 0)
{
foreach($results as $row)
{ ?>
<table border="1" class="table table-bordered table-striped table-vcenter js-dataTable-full-pagination">
<tr>
<th>Name of Company</th>
<td><?php echo $row->CompnayName;?></td>
<th>Company Logo</th>
<td><img src="../employers/employerslogo/<?php echo $row->CompnayLogo;?>" width="100" height="100"></td>
<th>Company Tag Line</th>
<td><?php echo $row->CompanyTagline;?></td>
</tr>
<tr>
<th>Concern Person</th>
<td><?php echo $row->ConcernPerson;?></td>
<th>Email</th>
<td><?php echo $row->EmpEmail;?></td>
<th>Company Tagline</th>
<td><?php echo $row->CompanyTagline;?></td>
</tr>
<tr>
<th colspan="6" style="text-align: center;color: blue">Company Description</th></tr>
<tr>
<td colspan="6"><?php echo $row->CompnayDescription;?></td>
</tr>
<tr>
<th>Industry</th>
<td><?php echo $row->industry;?></td>
<th>Business Entity</th>
<td><?php echo $row->typeBusinessEntity;?></td>
<th>Location</th>
<td><?php echo $row->lcation;?></td>
</tr>
<tr>
<th>Company URL</th>
<td><?php echo $row->CompanyUrl;?></td>
<th>Number of Employee</th>
<td><?php echo $row->noOfEmployee;?></td>
<th>Established Date</th>
<td><?php echo $row->establishedIn;?></td>
</tr>
<?php $cnt=$cnt+1;}} ?>
</table>
</div>
</div>
<!-- END Bootstrap Register -->
</div>
</div>
</div>
<!-- END Page Content -->
</main>
<!-- END Main Container -->
<?php include_once('includes/footer.php');?>
</div>
<!-- END Page Container -->
<!-- Codebase Core JS -->
<script src="assets/js/core/jquery.min.js"></script>
<script src="assets/js/core/popper.min.js"></script>
<script src="assets/js/core/bootstrap.min.js"></script>
<script src="assets/js/core/jquery.slimscroll.min.js"></script>
<script src="assets/js/core/jquery.scrollLock.min.js"></script>
<script src="assets/js/core/jquery.appear.min.js"></script>
<script src="assets/js/core/jquery.countTo.min.js"></script>
<script src="assets/js/core/js.cookie.min.js"></script>
<script src="assets/js/codebase.js"></script>
</body>
</html>
<?php } ?>