Mark Anderson wrote:
> 
> #open FILE or die...
> my $location = <FILE>;
> my $format = <FILE>;
> my $cost = <FILE>;
> my $start = <FILE>;
> my $runby = <FILE>;
> my $prize = <FILE>;
> 
> now you have each of the 6 lines in its own variable.  You can then use the
> variables to lay out your HTML.


And of course you can put it all on one line:

my ( $location, $format, $cost, $start, $runby, $prize ) = <FILE>;


John
-- 
use Perl;
program
fulfillment

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to