+ 1
how to display images using php
<?php echo "<img src="location.jpg" alt="h" width="100px" height="100px">"; ?> image is not displaying. please help!!
1 Antwort
+ 1
Replace " on ' in echo.
<php echo "<img src='location.jpg' alt='h' width='100px' height='100px'>"; ?>