Help for this page

Select Code to Download


  1. or download this
       open(NEWS,"news.html");
        while(<>) {
            $pagetext .= $_;
        }
        close NEWS;
    
  2. or download this
       open(NEWS,"news.html");
        while(<NEWS>) {
            $pagetext .= $_;
        }
        close NEWS;