Help for this page

Select Code to Download


  1. or download this
    while (my($word, $count) = $sth->fetchrow_array) {
        $tag{$word} = $count;
    }
    
  2. or download this
    foreach my $words (sort keys  %tag) {
      my $fsize = $tag{$words};
      printf "<style=\"font-size:%dpx;\">%s\n", $fsize, $words;
    }