Help for this page
my $sth = $dbh->prepare('SELECT DISTINCT email FROM contacts WHERE gue +st = ? ORDER BY email'); $sth->execute($value) or die $sth->errstr;
my $sth = $dbh->prepare('SELECT DISTINCT email FROM contacts WHERE ? = + ? ORDER BY email'); $sth->execute($value1,$value2) or die $sth->errstr;