ParisR has asked for the wisdom of the Perl Monks concerning the following question:
Here is my code which gives me an output like this:
ABCcorp 246 Cerritos Ave Signal Hill CA 90755 562-427-555
#output database results while (@row=$sth->fetchrow_array) { print FINAL "@row\n" } close FINAL;
How do I code it so that it formats with a newline after each of the fields so that the data appears as a column?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Array results
by davido (Cardinal) on Oct 29, 2004 at 00:50 UTC | |
by ikegami (Patriarch) on Oct 29, 2004 at 04:26 UTC | |
by Happy-the-monk (Canon) on Oct 29, 2004 at 08:31 UTC | |
by chb (Deacon) on Oct 29, 2004 at 10:14 UTC |