Re: $$foo in Apache::ASP

2000-08-12 Thread Randal L. Schwartz
> "Rod" == Rod Butcher <[EMAIL PROTECTED]> writes: Rod> I'm running Apache 1.12, Mod_Perl 1.23, Apache::ASP 2.03 on NT. Rod> I can't get the construct Rod> <% Rod> $foo = "xxx"; Rod> $$foo="yyy"; Rod> %> Rod> to populate $xxx with "yyy". Works in normal Perl. For an odd definition of "works"

Re: $$foo in Apache::ASP

2000-08-12 Thread Matt Sergeant
On Sat, 12 Aug 2000, Rod Butcher wrote: > I'm running Apache 1.12, Mod_Perl 1.23, Apache::ASP 2.03 on NT. > I can't get the construct > <% > $foo = "xxx"; You need to turn off strict here: no strict 'refs'; > $$foo="yyy"; > %> > to populate $xxx with "yyy". Works in normal Perl. > > Any sugee

$$foo in Apache::ASP

2000-08-12 Thread Rod Butcher
I'm running Apache 1.12, Mod_Perl 1.23, Apache::ASP 2.03 on NT. I can't get the construct <% $foo = "xxx"; $$foo="yyy"; %> to populate $xxx with "yyy". Works in normal Perl. Any sugeestions ? Thanks Rod