-
Notifications
You must be signed in to change notification settings - Fork 0
/
company.php
29 lines (23 loc) · 1.09 KB
/
company.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
<section id="content">
<div class="container content">
<!-- Service Blcoks -->
<div class="row">
<?php
$sql = "SELECT * FROM `tblcompany`";
$mydb->setQuery($sql);
$comp = $mydb->loadResultList();
foreach ($comp as $company ) {
?>
<div class="col-sm-4 info-blocks">
<i class="icon-info-blocks fa fa-building-o"></i>
<div class="info-blocks-in">
<h3><?php echo '<a href="'.web_root.'index.php?q=hiring&search='.$company->COMPANYNAME.'">'.$company->COMPANYNAME.'</a>';?></h3>
<!-- <p><?php echo $company->COMPANYMISSION;?></p> -->
<p>Address :<?php echo $company->COMPANYADDRESS;?></p>
<p>Contact No. :<?php echo $company->COMPANYCONTACTNO;?></p>
</div>
</div>
<?php } ?>
</div>
</div>
</section>