Help for this page

Select Code to Download


  1. or download this
           @words = split (/ /, $titleclean);
            $filename = $year."-".$mon;
            #for ($i=0; $i<3; $i++) {
    ...
                $filename = $filename."-".$words[$i];
            }
            $filename = $filename.".html";
    
  2. or download this
        $filename =~ s/ /-/gi;
        $filename =~ s/--//gi;
        $filename =~ s/-\.html/\.html/gi;