+ 1
how to insert gif image in php?
insert gif image
3 Antworten
+ 4
Hello, Tomy Nanda Putra !
php works directly with html markup.
You can use "echo" to display your image.
For example:
<?php
echo "<img src='path/image.gif'/>";
?>
You can also use the search on SoloLearn, for similar questions. Since there are already solutions for such issues.
Good luck in programming on SoloLearn!
https://www.sololearn.com/learn/HTML/1030/?ref=app
https://www.sololearn.com/Discuss/1135549/?ref=app
https://www.sololearn.com/Discuss/1194412/?ref=app
+ 1
<img src ="Put the path of gif img here" alt=""/>
0
thank's Alexander Sokolov!
your answer is helpful.