G
Guy
For those who use Perl to generate HTML pages...
I just started reading CGI Programming with Perl by Guelich Gundavaram and
Birznieks, and I learned that you can generate HTML codes with CGI.pm, such
as the following but it sounds strange to me because you would have to learn
a new HTML syntax.
print $q->start_html(-title=> "My Site" );
I have learned about here documents which uses << followed by a token. This
appears easier to me.
Are there any advantages to using CGI.pm in this case?
Guy
I just started reading CGI Programming with Perl by Guelich Gundavaram and
Birznieks, and I learned that you can generate HTML codes with CGI.pm, such
as the following but it sounds strange to me because you would have to learn
a new HTML syntax.
print $q->start_html(-title=> "My Site" );
I have learned about here documents which uses << followed by a token. This
appears easier to me.
Are there any advantages to using CGI.pm in this case?
Guy