-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwlcome.php
More file actions
22 lines (19 loc) · 817 Bytes
/
Copy pathwlcome.php
File metadata and controls
22 lines (19 loc) · 817 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!-- START USER PAGE BY BASEL AHMED -->
<?php include'inc/wheader.php'; ?>
<?php
$sql='select * from items1 ';
$ret=mysqli_query($con,$sql);
while($res=mysqli_fetch_assoc($ret))
{
echo'
<div class="col-lg-4 col-sm-12 m ">
<p>'.$res['Name'].'</p>
<div class="thumbanil">
<img src="images/'.$res['img'].'">
<hr>';?>
<p> <a class="btn btn-light" href="showmore.php?id=<?php echo $res['id']?>"><button class="btn btn-outline-primary" > Detalis of Device</button></a></p>
<?php echo'</div>
</div>';
}
?>
<?php include'inc/wfooter.php';?>