Re: Perl version of phpinfo()

2002-03-08 Thread Michael Stassen
> On Fri, 8 Mar 2002 12:33:24 -0800 (PST), Margie New <[EMAIL PROTECTED]> wrote: > > >>Is there a Perl function similar to php's phpinfo() > >>that echos or returns a complete synopsis of the Perl > >>configuration core? We are trying to determine whether > >>the MySQL DBI/DBD module is accessi

Re: Perl version of phpinfo()

2002-03-08 Thread Mike(mickalo)Blezien
On Fri, 8 Mar 2002 12:33:24 -0800 (PST), Margie New <[EMAIL PROTECTED]> wrote: >>Is there a Perl function similar to php's phpinfo() >>that echos or returns a complete synopsis of the Perl >>configuration core? We are trying to determine whether >>the MySQL DBI/DBD module is accessible to Perl

Re: Perl version of phpinfo()

2002-03-08 Thread Curtis Maurand
for $key (sort keys %ENV) { print "$key = $ENV{$key}\n"; } Page 155 of learning perl 1st (purple) edition. Curtis Margie New said: > Is there a Perl function similar to php's phpinfo() > that echos or returns a complete synopsis of the Perl > configuration core? We are trying to determine