hi there,
several questions :
In the new 5.6.0 perl I can check for existence of a sub in this way :
if (exists &main::blah) { &main::blah }
else { $self->blah };
how can I do this in oldest perl's (i need for 5.005_3)
I can't use this :
if ( $main::{blah} ) ....
OR
if ( defined $main::{blah} ) ....
OR
if ( exists $main::{blah} ) ....
'cause all the time it is "autovivifing"!! (is this the correct word, for creating
this key when I try to access it), so my check do nothing... but tring to execute
&main::blah even there is no such sub.
anyone working with HTML::Template ?
My perl interpeter is crashing very often when I try to print the output.
I have tried :
print $t->output;
OR
$abc = $t->output;
print $abc
OR
$abc = $t->output;
$| = 1;
print $abc;
I'm having most ofen perl crashes when I use the first variant, and rarely with
the third one.
I think it is more related to the OS and/or Perl/ web server .... anyone to
have a solution.
The config is very weird i.e :
German-Win98/PWS/Active State build 623(5.6.0)
Thanx alot in advance
=====
iVAN
[EMAIL PROTECTED]
=====
http://netwinsite.com
_______________________________________________
Perl-Win32-Web mailing list
[EMAIL PROTECTED]
http://listserv.ActiveState.com/mailman/listinfo/perl-win32-web