Kuntent has asked for the wisdom of the Perl Monks concerning the following question:
Thank you very much!use strict; print "Content-type: text/html\n\n"; open (LOG, "missatges.txt") || die "$!"; while (<LOG>) { chomp; my @attributes = split/\|/; print "<B>$attributes[0] . '||' . $attributes[1]</B>\n"; print "<BR>\n"; print "$attributes[2]\n"; print "<BR><BR>\n"; } CLOSE LOG;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Perl and Flash 5.0
by Ovid (Cardinal) on Jul 21, 2002 at 16:30 UTC | |
|
Re: Perl and Flash 5.0
by BrowserUk (Patriarch) on Jul 21, 2002 at 15:29 UTC | |
|
Re: Perl and Flash 5.0
by Chady (Priest) on Jul 21, 2002 at 17:53 UTC |