in reply to help with start_table of CGI.pm

Try wrapping your options up in a hash:

print CGI::start_table({border=>'1', cellspacing=>'0', cellpadding=>'1 +'});

Prints:

<table cellspacing="0" cellpadding="1" border="1">

See the CGI documentation - especially the 'PROVIDING ARGUMENTS TO HTML SHORTCUTS' section.

If you are starting out with CGI then Ovid's CGI Course is a good starting point.

You may find some of the Tutorials' section CGI Programming material helpful too.


DWIM is Perl's answer to Gödel

Replies are listed 'Best First'.
A reply falls below the community's threshold of quality. You may see it by logging in.