cvs commit: perlfaq perlfaq9.pod

[email protected] (brian d foy) 3 Jan 2005 18:23:37 -0000
Newsgroups perl.cvs.perlfaq
Message-ID <[email protected]>
cvsuser     05/01/03 10:23:36

  Modified:    .        perlfaq9.pod
  Log:
  * How do I automate an HTML form submission?
  	+ mention WWW::Mechanize
  
  Revision  Changes    Path
  1.17      +5 -1      perlfaq/perlfaq9.pod
  
  Index: perlfaq9.pod
  ===================================================================
  RCS file: /cvs/public/perlfaq/perlfaq9.pod,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- perlfaq9.pod	30 Oct 2004 12:20:59 -0000	1.16
  +++ perlfaq9.pod	3 Jan 2005 18:23:36 -0000	1.17
  @@ -1,6 +1,6 @@
   =head1 NAME
   
  -perlfaq9 - Networking ($Revision: 1.16 $, $Date: 2004/10/30 12:20:59 $)
  +perlfaq9 - Networking ($Revision: 1.17 $, $Date: 2005/01/03 18:23:36 $)
   
   =head1 DESCRIPTION
   
  @@ -227,6 +227,10 @@
   
   =head2 How do I automate an HTML form submission?
   
  +If you are doing something complex, such as moving through many pages
  +and forms or a web site, you can use C<WWW::Mechanize>.  See its
  +documentation for all the details.
  +
   If you're submitting values using the GET method, create a URL and encode
   the form using the C<query_form> method: