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;
> >
> >
> 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"
>
>
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
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
--