Help for this page

Select Code to Download


  1. or download this
    use strict;
    use CGI;
    use WWW::Search;
    ...
       print qq{<P><A HREF="http://mogana/index.htm">Search Again!</A>};
       print $q->end_html;
    }
    
  2. or download this
    use strict;
    use WWW::Search;
    my $Search = new WWW::Search();
    ...
    while (my $Result = $Search->next_result()) { 
       print $Result->url, "\n";
    }