Help for this page

Select Code to Download


  1. or download this
      sub the_name {
          my $id = shift;
          my $sth = $db->prepare("select the_name from table where id = ?"
    +);
    ...
          $sth->finish();
          return $the_name;
      }
    
  2. or download this
      print the_name(3);