-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservices_content.php
24 lines (19 loc) · 1.17 KB
/
services_content.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
<div class="alert alert-info">List of Services Offered </div>
<table cellpadding="0" cellspacing="0" border="0" class="table table-bordered" id="example">
<thead>
<tr>
<th>Service Offer</th>
<th>Price</th>
</tr>
</thead>
<tbody>
<?php $user_query=mysqli_query($conn,"select * from service")or die(mysqli_error($conn));
while($row=mysqli_fetch_array($user_query)){
$id=$row['service_id']; ?>
<tr class="del<?php echo $id ?>">
<td><?php echo $row['service_offer']; ?></td>
<td><?php echo $row['price']; ?></td>
</tr>
<?php } ?>
</tbody>
</table>