Hi all,
I'm trying place html tags into my php script via the "echo" command.
I have no problem returning basic html tags i.e. <BR>, <B>, <I>
however when I place start getting into more complicated formatting I get errors.
I've tried encompassing the whole html code with:
echo " <HTML>
<BODY>hi
</BODY>"
and tried echoing each line:
echo " <HTML>"
echo " <BODY>hi"
echo " </BODY>"
Essentially I'd like the script to run a fully designed and formatted
webpage with links and all.
Any ideas?