Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use warnings;
    use strict;
    ...
    $sth->execute($name);
    my $arr = $sth->fetchall_arrayref;
    print "@$_\n" for @$arr;