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
You can also use ' instead of " for strings, e.g.
'
"
This works: echo '"Hello!"'; => "Hello!"
echo '"Hello!"'; => "Hello!"
This wont work: echo "'Hello'";
echo "'Hello'";