Hi all
Just a "style" question.
CGI is a standard module and appears to be a bit of an easy way to write HTML.
So, rather than:
I can just:
Just a "style" question.
CGI is a standard module and appears to be a bit of an easy way to write HTML.
So, rather than:
Code:
print "<h1>Heading</h1>\n";
I can just:
Code:
print h1("Heading");[\code]
which seems a little less [i]low-level[/i].
Is this what people normally do? Please note, this script just outputs an HTML file, not a real CGI script.
I see there's also modules like HTML::Table that I might use too ...
Thanks! :)