in reply to DBI & CGI Security
Hope this helps.my $file = '/path/db.txt'; open FILE, '<', $file or die $!; chomp(my ($auth) = <FILE>); my ($dbuser, $dbpasswd) = split('\t', $auth); close FILE;
jayrom
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: DBI & CGI Security
by bradcathey (Prior) on Jun 03, 2004 at 17:30 UTC | |
by jayrom (Pilgrim) on Jun 03, 2004 at 17:49 UTC | |
by bradcathey (Prior) on Jun 03, 2004 at 18:42 UTC | |
by jayrom (Pilgrim) on Jun 03, 2004 at 19:14 UTC | |
Re^2: DBI & CGI Security
by fizbin (Chaplain) on Jun 04, 2004 at 15:45 UTC |