> > > > Or am i missing the point? > > Yeah, I think you did. > > > This is the real point... > > $x = "foo"; > $$x = 20; # this sets $foo > print $foo; # prints "20" > print $x; # still prints "foo"!. > > But like I said, this is usually a bad way of doing things. > It is better to > use a hash when you have dynamic names. > > Rob >
Thanks. I will continue on without them :) -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
