PHP embed html image as a link

后端 未结 4 723
执念已碎
执念已碎 2021-01-23 05:50

How do I go about using an image as a link in php? I have never put two html elements together in one echo so it\'s kinda new for me. Here\'s my code:

htmltest.php

4条回答
  •  爱一瞬间的悲伤
    2021-01-23 06:41

    Change the line to:

    echo  '';
    

    OR

    echo  "";
    

    The problem, as the error somewhat suggests, is that the PHP interpreter can't figure out where your string is supposed to start and end. Using \" escapes the quotes. Using ' around the string gives a unique string delimiter around the string, so you are free to use double quotes inside.

    Note, if you needed both single and double:

    echo  '';
    

提交回复
热议问题