-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathservice.php
executable file
·78 lines (71 loc) · 1.95 KB
/
service.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
<?php
include('src/functions.php');
include('src/config.php');
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>SPA Pathcare : Service</title>
<?php include('src/head.php') ?>
</head>
<body>
<?php include('src/preload.php') ?>
<!--=========== BEGIN HEADER SECTION ================-->
<?php include('src/header.php') ?>
<!--=========== END HEADER SECTION ================-->
<?= youAreHere("Service") ?>
<section id="service">
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-12">
<div class="service-area">
<!-- Start Service Title -->
<div class="section-heading">
<h2>Test</h2>
<div class="line"></div>
</div>
<div class="service-content">
<div class="row">
<div class="col-lg-12 col-md-12">
<table class="table table-hover">
<thead>
<tr>
<th>Test</th>
<th>Fees</th>
</tr>
</thead>
<tbody>
<?php
$sql = mysqli_query($con, "SELECT * FROM test");
while ($row = mysqli_fetch_array($sql)) {
?>
<tr>
<th scope="row">
<?= $row['test_name'] ?>
</th>
<td>
<?= $row['test_cost'] ?>
</td>
</tr>
<?php
}
?>
</tbody>
</table>
<div class="readmore_area">
<a data-hover="Book Appointment" href="index.php"><span>Book Appointment</span></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--=========== Start Footer SECTION ================-->
<?php include('src/footer.php') ?>
<!--=========== End Footer SECTION ================-->
<?php include('src/incfooter.php') ?>
</body>
</html>