n4mation has asked for the wisdom of the Perl Monks concerning the following question:
I just use a simple SSI to call the scripts. Thanks in advance.open (DB, "<$data_file"); while (<DB>) { $row = $_; chop $row; @fields = split (/\|/, $row); print "$fields[0]"; } close (DB);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Environment Variables
by dmmiller2k (Chaplain) on Jan 03, 2002 at 09:55 UTC | |
|
Re: Environment Variables
by mrbbking (Hermit) on Jan 03, 2002 at 18:25 UTC | |
|
Re: Environment Variables
by archen (Pilgrim) on Jan 03, 2002 at 19:19 UTC |