Help for this page

Select Code to Download


  1. or download this
    while(<COUNT>){
      if(/^$/){}else{
    ...
      chomp($count);
      $OS_Count{$OS_Name}=$count;
    }
    
  2. or download this
    while(<COUNT>){
        next if /^\s*#?\s*$/; # skip blank lines (the hash mark lets you a
    +dd comments)
    ...
        ($OS_Name,$count)   = split /=/;
        $OS_Count{$OS_Name} = $count;
    }
    
  3. or download this
        print $CGI->redirect($file);