Help for this page

Select Code to Download


  1. or download this
    <select id="birth_month" name="birthdate">
    <option value=""> -- </option>
    ...
    <option value="01"> 01 </option>
    ...
    </select>
    
  2. or download this
    $mech = Test::WWW::Mechanize->new();
    ...
    ...
    # or
    
    $mech->set_fields({ ..., 'birthdate' => ['01',0] });
    
  3. or download this
    $mech->field('birthdate', ['01'], 0);
    $mech->field('birthdate', ['17'], 1);