Help for this page

Select Code to Download


  1. or download this
    $sth->execute($id) or err_trap;
    $sth->bind_col(1, \my $e_mail);
    ...
    while ($sth->fetch) {
      print "$e_mail\n";
    }
    
  2. or download this
    while (my ($e_mail) = $sth->fetchrow_array) {
      ...