in reply to Re: CGI::Sessions fails when I use Data::Dumper
in thread CGI::Sessions fails when I use Data::Dumper

Thank you that last link solved my problem exactly --
$cgi->escapeHTML( Dumper( $cgi, $sss) );

Replies are listed 'Best First'.
Re^3: CGI::Sessions fails when I use Data::Dumper
by Anonymous Monk on Sep 20, 2011 at 16:01 UTC

    escapeHTML oddly only takes 1 argument, and ignores the rest, so that only works if you have

    sub Dumper { scalar Data::Dumper->new( \@_ )->Indent(1)->Useqq(1)->Dum +p; }