“Afficher l'image en HTML à l'aide de PHP” Réponses codées

Comment montrer l'image 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

Afficher l'image en HTML à l'aide de 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

Réponses similaires à “Afficher l'image en HTML à l'aide de PHP”

Questions similaires à “Afficher l'image en HTML à l'aide de PHP”

Plus de réponses similaires à “Afficher l'image en HTML à l'aide de PHP” dans PHP

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code