Does anyone know if there is a way in php to use echo statements or any others in php so that i don't always have to use the '\' if i have to pritn like a whole page of HTML parsed through php. For example, if i wanted to print a link to whatever.html in HTML through php, i woul dhave to put:
echo "<A HREF=\"whatever.html\">link here</a>";
is there a way that i can do something like:
function "<A HREF="whatever.html">link here</a>";
without getting parse errors in php?