Help for this page

Select Code to Download


  1. or download this
    use CGI::Carp qw/fatalsToBrowser/;
    use Data::Dumper
    ...
    # yada yada yada
    
    die Dumper $form; # or some other data-structure
    
  2. or download this
    # this is part of the actions-dispatch of my wiki-project
    
    ...
          encode_base64($graph->as_png),
          '" alt="debug"/>', $q->end_html;
       },
    
  3. or download this
    # this is part of the actions-dispatch of my wiki-project
    
    ...
          encode_base64($g->as_png),
          '" alt="debug"/>', $q->end_html;
       }