I want to print multiple lines without have to worry about using single quotes instead of double...for example
print"<body>
<table border='1' bordercolor='red'>
<tr><td>$variable</td></tr>
</table>";
on separate lines works fine, but can I print a bunch of lines like the above and have it work still using double quotes, like this
print"<body>
<table border="1"bordercolor="red"
<tr><td>$variable</td></tr>
</table>";
Perl has a way of doing it by giving the block of code a name and then printing it all at once. I could end my php code using the ?> take but I don't want to because I want to insert alot of variables in the code.
Drew