Help for this page

Select Code to Download


  1. or download this
    use GraphViz; 
    my $g = GraphViz->new(); 
    foreach $command (@commands) {
     eval('$g->'.$command);
     }
    
  2. or download this
    use strict;
    use CGI;
    ...
    foreach my $comm (@comm) {
        eval('print $cgi->'.$comm);
    }
    
  3. or download this
    Content-Type: first
    
    Content-Type: second
    
  4. or download this
    my $comm = "header";
    print $cgi->$comm('third');
    
  5. or download this
     my $comm = "header('third')";
     print $cgi->$comm