Re: cgi script not workingI

2003-10-23 Thread radhika sambamurti
I finally decided to use, use diagnostics and had the sudden idea of testing it on the cl. Your suggestion is very useful. I will do that in the future ie include the actual error and test it on the cl. It works now. Thanks! Radhika On Thu, 23 Oct 2003 15:21:20 -0500 "Charles K. Clarkson" <[EM

RE: cgi script not workingI

2003-10-23 Thread Charles K. Clarkson
radhika sambamurti <[EMAIL PROTECTED]> wrote: : : I am trying to include the file ra_require.pl in Alogin.pl - : details are below. : : This script is calling a subroutine from the cgi script below : They are both cgi scripts. : When I submit my request via a html form (let us call it : login.h

cgi script not workingI

2003-10-23 Thread radhika sambamurti
I am trying to include the file ra_require.pl in Alogin.pl - details are below. This script is calling a subroutine from the cgi script below They are both cgi scripts. When I submit my request via a html form (let us call it login.html) - it is supposed to call Alogin.pl, but it is not working.

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: accessing array of arrays in a hash

2003-10-23 Thread Wiggins d Anconia
Disregard this first message my web based mail client was acting up, the other message is much more informative, sorry, http://danconia.org -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: accessing array of arrays in a hash

2003-10-23 Thread Wiggins d Anconia
For beginners non-cgi issues, there is also the '[EMAIL PROTECTED]' list. Just for your info > While this is being used in a cgi, it's really more of a general perl > question. But I'm hoping I can get some help. > > I have a hash which has arrays of arrays as the value for each key: > $tab

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: accessing array of arrays in a hash

2003-10-23 Thread Wiggins d Anconia
For beginners non-cgi issues, there is also the '[EMAIL PROTECTED]' list. Just for your info > While this is being used in a cgi, it's really more of a general perl > question. But I'm hoping I can get some help. > > I have a hash which has arrays of arrays as the value for each key: > $tab

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

accessing array of arrays in a hash

2003-10-23 Thread Chad A Gard
While this is being used in a cgi, it's really more of a general perl question. But I'm hoping I can get some help. I have a hash which has arrays of arrays as the value for each key: $tabset = 'clientInfo'; %tabsets = ( clientInfo => [('#', 'View Contact Information', 'Contact Information'),

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

Perl Script in Tables

2003-10-23 Thread paolo . libardi
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 to now I just wrote perl scripts which worked all alone in the page, so I