Answers for "adding an image from your computer in html"

1

how to add an image to my web page from my computer

<img src=”sun.jpg” alt=”Sun”></img>
Posted by: Guest on June-05-2020
-2

how to add image in html from a folder

$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']."' >";   
      
    }
Posted by: Guest on July-07-2020

Code answers related to "adding an image from your computer in html"

Browse Popular Code Answers by Language