“Mostrar imagen en HTML usando PHP” Código de respuesta

Cómo mostrar la imagen de PHP

<html>
 <head>
 <title>display image</title>
 </head>
 <body>
 <p>Here in your form and text</p>
	<?php
 
	echo "<img src='image-name.png' >"; 

	?>  
 </body>
 </html>
Black Bat

Mostrar imagen en HTML usando PHP

<html>
 <head>
 <title>display image</title>
 </head>
 <body>
 <p>Here in your form and text</p>
	<?php
	$conn = mysqli_connect("localhost", "root", "", "customer");
	$image_details  = mysqli_query($conn, "SELECT * FROM customer_table");
     while ($row = mysqli_fetch_array($image_details)) {     
		
      	echo "<img src='images/".$row['imagename']."' >";   
      
    }     

	?>
  
 </body>
 </html>
Distinct Dugong

Respuestas similares a “Mostrar imagen en HTML usando PHP”

Preguntas similares a “Mostrar imagen en HTML usando PHP”

Más respuestas relacionadas con “Mostrar imagen en HTML usando PHP” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código