- or download this
foreach $pair (@pairs) {
...
$formdata{$key} = $value;
}
}
- or download this
open DATA, $data;
- 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;
}
- 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;
}
- or download this
sub update_foo {
my ( $self, $data ) = @_;
...
$self->{ _dbh }->commit if ! $self->{ _error };
return $return;
}