Re: Table Confusion

2001-07-02 Thread James Kelty
Thanks alot! -James Lucy wrote: > > > > Hello. > > > > I can't seem to find any info on CGI.pm's ability to write tables. Does > > it have the ability? Or do I have to write it in raw html first add add > > CGI.pm elements to it? > > > > print << "END_HTML" > > > > > > > > END_HTML; > > > >

Re: Table Confusion

2001-07-02 Thread Lucy
> Hello. > > I can't seem to find any info on CGI.pm's ability to write tables. Does > it have the ability? Or do I have to write it in raw html first add add > CGI.pm elements to it? > > print << "END_HTML" > > > > END_HTML; > > print $cgi->em("stuff here"); > > print << "END_HTML2" > >

Re: Table Confusion

2001-07-02 Thread Brett W. McCoy
On Mon, 2 Jul 2001, James Kelty wrote: > I can't seem to find any info on CGI.pm's ability to write tables. Does > it have the ability? Or do I have to write it in raw html first add add > CGI.pm elements to it? It's in the docs. CGI.pm has some very cool things you can do with tables and rows

Table Confusion

2001-07-02 Thread James Kelty
Hello. I can't seem to find any info on CGI.pm's ability to write tables. Does it have the ability? Or do I have to write it in raw html first add add CGI.pm elements to it? print << "END_HTML" END_HTML; print $cgi->em("stuff here"); print << "END_HTML2" END_HTML2 Like this? -James --