Home > Software engineering >  HTML PHP Image URL Call
HTML PHP Image URL Call

Time:04-22

I have an image URL, for example, http://URL/123.jpg. I can view the image in the browser, but it's not working when using the <img> tag in PHP. It's not working, and the idea is somehow not displayed.

echo "<img src=\"http://URL/123.jpg\" style=\"width:11%;height:auto;margin-left: 570px;margin-top: 170px;\">";

Any idea?

CodePudding user response:

For php I use '' and for html the "" quotation marks. Don't know if it's gonna solve your issue tho. Maybe the height:auto; is the problem. I think you can even delete it, if you set the width the height should be auto by default.

echo '<img src="http://test.com/123.jpg" style="width:11%;margin-left: 570px;margin-top: 170px;" />';

CodePudding user response:

Use Normal HTML syntax, include your php then save file as .php

<!DOCTYPE html>
<html>
<body>

<img src="https://external-content.duckduckgo.com/iu/?u=https://tse1.mm.bing.net/th?id=OIP.GONAZbNLqDhBj8q4CpTnCQHaLH&pid=Api&f=1" style="width:100px;height:auto;margin-left: 570px;margin-top: 170px;"/>

<!--your php file-->
<?php include 'footer.php';?>
</body>
</html>

Don't forget you have to save this file as PHP.

  • Related