> "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"
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
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