in reply to HTML embedded in perl
or use a different quoting mechanism...print STDOUT "<FONT COLOR=\"red\"> $data </FONT><P>";
...but as an HTML purist, I would urge you to consider using styles rather than the font tag...print STDOUT qq(<FONT COLOR="red"> $data </FONT><P>);
Good luck.print STDOUT "<span style='color:red;'> $data <span>";
|
|---|