Akopia Akopia Services

[Date Prev][Date Next][Thread Prev][Thread Next][Minivend by date ][Minivend by thread ]

Re: [ic] How to access PERL Environment Variables?



Zac,
	You can access the Session values, and other Perl vars.  You
almost had it, just change a few things, and it should work:
> [perl] 
>  foreach $key (sort keys %$Session) {
>   return $key, '=', $Session->{$key}, "<BR>\n";
>  }
> [/perl]
> 


Try this instead:
[perl] 
  my $return = '';
  foreach $key (sort keys %$Session) {
   $return .= $key, '=', $Session->{$key}, "<BR>\n";
  }
  return $return;
[/perl]
 


_______________________________________________
Interchange-users mailing list
Interchange-users@www.minivend.com
http://www.minivend.com/mailman/listinfo/interchange-users


Search for: Match: Format: Sort by: