Versuchen Sie dies, füllen Sie DB_NAME, DB_USER_NAME und DB_USER_PASS mit Ihren Verbindungsdaten aus oder verwenden Sie die $con-Variable, wenn alles korrekt als PDO-Objekt damit eingerichtet ist:
$con = new PDO( 'mysql:host=localhost;dbname=DB_NAME;charset=UTF-8', 'DB_USER_NAME', 'DB_USER_PASS' );
$query = $con->prepare( "SELECT `email` FROM `tbl_name` WHERE `email` = ?" );
$query->bindValue( 1, $email );
$query->execute();
if( $query->rowCount() > 0 ) { # If rows are found for query
echo "Email found!";
}
else {
echo "Email not found!";
}