in reply to Re^1: cgi.pm: complete list of method names? (easy)
in thread cgi.pm: complete list of method names?
So I suggest you look at the CGI.pm source as well, particularly the _compile sub and, by inference, the _make_tag_func sub. As far as I can see, the tags you can generate depend on the DTD you are using (ie HTML or XHTML). For when you use tags like this:
my $q = CGI->new(); my $start_tr = $q->start_Tr().$q->start_td();
etc...
cLive ;-)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: cgi.pm: complete list of method names? (easy)
by tye (Sage) on Jul 16, 2003 at 14:10 UTC |