Bootscat wrote at Tue, 01 Oct 2002 00:10:32 +0200:
> I'm setting up a list for free and pro members.
> I want the pro members to be able to mail daily. I have this part working.
>
> I want the free members to only be able to mail every 4 Days to the list.
>
> Using the localtime(time) =
> (se
.--[ Bootscat wrote (2002/09/30 at 09:13:19) ]--
|
| I'm setting up a list for free and pro members.
| I want the pro members to be able to mail daily. I have this part working.
|
| I want the free members to only be able to mail every 4 Days to the list.
|
| Using the loc
> @$foo{bar}
What you intend by the above is the scalar value
in $foo{bar} dereferenced as an array by the @.
But that's not what happens. To achieve what you
want, use:
@{$foo{bar}}
The issue here is precedence of sigils (@, $, etc.)
versus subscript parens ({}, []), and the meaning
of va