Re: Printing outside of foreach...

2004-06-26 Thread Zeus Odin
"Daniel Falkenberg" <[EMAIL PROTECTED]> wrote: > Hello again, Hi. *Always* put the following at the top of your code: use strict; # requires declaration of all variables use warnings; # gives warnings on mistakes and suggestions These two lines will save you countless hours of debugging

Re: Printing outside of foreach...

2004-06-25 Thread 'Paul Kraus'
$$downloaded_stocks[2]", > >}, > > ... Inside the loop. Is this all correct? > > Regards, > > Dan > > -Original Message- > From: Paul Kraus [mailto:[EMAIL PROTECTED] > Sent: Friday, 25 June 2004 10:28 PM > To: Daniel Falkenberg > S

Re: Printing outside of foreach...

2004-06-25 Thread Wiggins d Anconia
> Hello again, > > The folling code takes some data from the Australian Stock Exchage > website. The problem I am having is that I need to be able to access > the hash of the hash outside of the foreach statement. So in other > words I would like to be able to access areas within the hash > %sto

Re: Printing outside of foreach...

2004-06-25 Thread James Edward Gray II
On Jun 24, 2004, at 11:52 PM, Daniel Falkenberg wrote: Hello again, The folling code takes some data from the Australian Stock Exchage website. The problem I am having is that I need to be able to access the hash of the hash outside of the foreach statement. So in other words I would like to be a

Printing outside of foreach...

2004-06-25 Thread Daniel Falkenberg
Hello again, The folling code takes some data from the Australian Stock Exchage website. The problem I am having is that I need to be able to access the hash of the hash outside of the foreach statement. So in other words I would like to be able to access areas within the hash %stock_hash any wh