display image from mysqli database

Solutions on MaxInterview for display image from mysqli database by the best coders in the world

showing results for - "display image from mysqli database"
Simón
01 Jan 2020
1// database connection
2  $conn = mysqli_connect("localhost", "root", "", "student");
3// Fetch image from database
4	$img = mysqli_query($conn, "SELECT * FROM student_table");
5     while ($row = mysqli_fetch_array($img)) {     
6		
7      	echo "<img src='images/".$row['imagename']."' >";   
8      
9    } 
Isaac
06 Jan 2018
1<?php // Include the database configuration file  require_once 'dbConfig.php';  // Get image data from database $result = $db->query("SELECT image FROM images ORDER BY uploaded DESC"); ?>
2
3<?php if($result->num_rows > 0){ ?>     <div class="gallery">         <?php while($row = $result->fetch_assoc())?>             <img src="data:image/jpg;charset=utf8;base64,<?php echo base64_encode($row['image']); ?>" />         <?php } ?>     </div> <?php }else?>     <p class="status error">Image(s) not found...</p> <?php } ?>