Insert Print Function Dialog
Menu: Quick Insert Þ Print Function...
Allows you to insert a lot of HTML output to your script easily. For example, this text:
<a href="mypage.htm">My link!</a>
<a href="yourpage.htm">Another link!</a>
Will be converted to this Perl code:
print "<a href=\"mypage.htm\">My Link!</a>\n";
print "<a href=\"yourpage.htm\">Another link!</a>\n"; |