Help for this page

Select Code to Download


  1. or download this
    my $hash = {
       name  => 'Joe',
       phone => 222,
       code  => 'A',
    };
    
  2. or download this
    sub insert {
       my ($table,$hash) = @_;
    ...
       );
       $sth->execute(values %$hash);
    }