Help for this page

Select Code to Download


  1. or download this
     @data=([@array1],[@array2],[@array3]);  
     my $gd = $graph->plot(\@data) or die $graph->error;
    
  2. or download this
    for ($x=1; $x<10; $x++)
    {
    ...
    push @data, [ @anotherarray ];
    }
     my $gd = $graph->plot(\@data) or die $graph->error;
    
  3. or download this
    foreach $file (@files)
    {
    ...
    
    
    }