-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathshowimage.php
33 lines (32 loc) · 878 Bytes
/
showimage.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>show image</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
</head>
<body>
<?php
$con =mysqli_connect("localhost","root","","filedb") or die(mysql_error());
mysqli_select_db($con,"filedb");
$q = "SELECT name from imgtable";
$result=mysqli_query($con,$q);
while($row=mysqli_fetch_array($result))
{
//echo $row['name']; //get image name
?>
<!-- <div class="container">
<img src="uploads/<?php //echo $row['name'];?>" alt="not found">
</div> -->
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-3 col-sm-3 col-sm-12">
<img src="uploads/<?php echo $row['name'];?>" alt="" class="img-fluid rounded">
<h4><?php echo $row['name'] ; ?></h4>
</div>
</div>
</div><hr>
<?php } ?>
</body>
</html>