RE: Perl Script in Tables

2003-10-23 Thread Charles K. Clarkson
Paolo <[EMAIL PROTECTED]> wrote: : : print table({-width=>'100%', -bgcolor=>'#DC00DC', -border=>3}, : Tr([ : td(['text left', 'text right'] : ]) : ); : How can I modify this commands to make the 'text left' : element width 20% of the table, and 'text right' element

Re: Perl Script in Tables

2003-10-23 Thread p . libardi
Probably I shoudl modify the subject in "Tables in Perl Script", as my problem now is excatly this: I'm printing a table from my Perl script, in this way: print table({-width=>'100%', -bgcolor=>'#DC00DC', -border=>3}, Tr([ td(['text left', 'text right'] ]) ); H

Re: Perl Script in Tables

2003-10-23 Thread paolo . libardi
On giovedì 23 ottobre 2003, alle 10:48, Charles K. Clarkson wrote: > I start CGI programs with: > > #!/usr/bin/perl -T > > use strict; > use warnings; > > use CGI; > > The CGI.pm module, which is included with the perl > distribution, has some excellent examples. You can also > read Ovi

RE: Perl Script in Tables

2003-10-23 Thread Charles K. Clarkson
[EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: : I solved it by myself, just wanted to post the solution : even if it's so simple, maybe it could useful for someone. : I just forgot the first instruction of any perl script in : HTML: print "Content-type: text/html\n\n"; : I put this instruction jus

Re: Perl Script in Tables

2003-10-23 Thread p . libardi
On giovedì 23 ottobre 2003, alle 14:50, [EMAIL PROTECTED] wrote: > Hi everyone, I started using Perl scripts just a couple of weeks ago, > and now I'm trying to include my first script inside a table in a Php > page. The table is correct, I just want the perl script to fill a TD in > the table. Up