Help for this page

Select Code to Download


  1. or download this
    
    foreach $pair (@pairs) {
    ...
            $formdata{$key} = $value;
        }
    }
    
  2. or download this
    open DATA, $data;
    
  3. or download this
    function changeLoc(formNum) {
        if ( document.forms[0].elements[formNum].options[document.forms[0]
    +.elements[formNum].selectedIndex].value == "Corporate Home" ) {
    ...
        }
        document.forms[0].elements[formNum].selectedIndex = 0;
    }
    
  4. or download this
    function changeLoc(formNum) {
        page = document.forms[0].elements[formNum].options[document.forms[
    +0].elements[formNum].selectedIndex].value;
    ...
        }
        document.forms[0].elements[formNum].selectedIndex = 0;
    }
    
  5. or download this
    sub update_foo {
        my ( $self, $data ) = @_;
    ...
        $self->{ _dbh }->commit if ! $self->{ _error };
        return $return;
    }