Help for this page

Select Code to Download


  1. or download this
        while($db->FetchRow()){                
            my %hash = $db->DataHash(@$fields_ref);
            push (@data, \%hash);
        }
    
  2. or download this
        while($db->FetchRow()){                
            push (@data, $db->DataHash(@$fields_ref));
        }
    
  3. or download this
        while ($data[$x]){
            my ($i,@orderdata,%myhash);
    ...
    $data[$x]{'anaglyph'}="checked";}
            $x++;
        }