-
Notifications
You must be signed in to change notification settings - Fork 0
/
consultancy.php
82 lines (61 loc) · 1.71 KB
/
consultancy.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
<?php
session_start();
include './admin/connection.php';
$sql="SELECT * FROM `consultancy`";
$result=mysqli_query($conn, $sql);
# print_r($result);
?>
<!DOCTYPE html>
<html lang="en">
<?php include './headerlinks.php'; ?>
<body class="body-wrapper">
<div class="main_wrapper">
<?php include './header.php'; ?>
<div class="content_top clearfix">
<div class="container">
<h2>Consultancy by IASDS</h2>
<div class="row price-table" style="padding-top:30px">
<div class="col-sm-12 col-xs-12 table-responsive" >
<table class="table table-striped" style="">
<tbody>
<tr>
<td width="50">
<p><strong>S.No</strong></p>
</td>
<td width="436">
<p><strong>Consultancy areas</strong></p>
</td>
<td width="287">
<p><strong>Consultancy given </strong></p>
</td>
</tr>
<?php
$sn=1;
while ($row = mysqli_fetch_assoc($result)) {
?>
<tr>
<td>
<p><strong><?php echo $sn++; ?></strong></p>
</td>
<td width="436">
<p><?php echo $row['c_area']; ?></p>
</td>
<td width="287">
<p><strong><?php echo $row['c_client']; ?></strong></p>
</td>
</tr>
<?php
}
?>
</tbody>
</table>
</div><!--end content left-->
</div>
</div><!--end container-->
</div><!--end content top-->
<?php include './footer.php'; ?>
</div>
<!-- JQUERY SCRIPTS -->
<?php include './footerlinks.php'; ?>
</body>
</html>