Re: mod_perl_traps && my($var) = '';

2001-02-20 Thread Ken Williams
[EMAIL PROTECTED] (Helios de Creisquer) wrote: >I used at beginning of script: > ... > my($var) = ''; > ... >I know this is a little dirty... everyway, >It seems that when mod_perl encouter a 'my' statement, >it doesn't evaluate it again next time the script is executed. [EMAI

Re: mod_perl_traps && my($var) = '';

2001-02-20 Thread Vasily Petrushin
my ($var) = (''); Vasily Petrushin +7 (095) 2508363 http://www.interfax.ru mailto:[EMAIL PROTECTED]

mod_perl_traps && my($var) = '';

2001-02-20 Thread Helios de Creisquer
Hi ! I just installed mod_perl 1.25 / apache 1.3.17 to speed up a CGI already existing. All works well, finally... but I had a problem with my variables initialization: I used at beginning of script: ... my($var) = ''; ... I know this is a little dirty... everyway, It see