View Single Post
  #2  
Old 11-08-2012, 06:32 AM
c0ncrete's Avatar
c0ncrete
Dragon
 
Join Date: Dec 2009
Posts: 719
Default

PEBKAC

to access an element via index, you want to use
Code:
$array_name[$index]
not
Code:
@array_name[$index]
don't worry about bless() unless you're writing custom classes.

also note that if you are declaring a variable with 'my' and assigning a value to it inside of a loop, it won't be available outside of that loop.
Reply With Quote