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

CGI::Sessions fails when I use Data::Dumper

Oh really?

1) Upgrade

2) Prove it :) How do I post a question effectively?

Re^3: Form Data inaccessible after establishing session

  • Comment on Re: CGI::Sessions fails when I use Data::Dumper

Replies are listed 'Best First'.
Re^2: CGI::Sessions fails when I use Data::Dumper
by nodebunny (Novice) on Sep 20, 2011 at 15:31 UTC
    Thank you that last link solved my problem exactly --
    $cgi->escapeHTML( Dumper( $cgi, $sss) );

      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; }