Forum Moderators: coopster
I am attempting to write this echo statement that paints an image in HTML code...
echo "<img src="/_borders/logoa.gif">";
and of course am encountering issues with the quotes around the file reference.
Any ideas for a quick reliable fix?
Many thanks....
escaped echo "<img src=\"/_borders/logoa.gif\">";
or single quoted echo '<img src="/_borders/logoa.gif">';
or use single quotes inside echo "<img src='/_borders/logoa.gif'>";
reference [php.net...]