2016-10-19 62 views
0

现在我正在尝试设置用户注册页面,并且在验证电子邮件尚未使用时遇到了问题。我想我所要做的就是查询我的数据库来检查电子邮件是否已被使用。这看起来很直截了当,所以我不知道为什么它给了我这样一个问题。确认电子邮件尚未注册PHP Mysql

我读过几篇文章,并尝试了几种PDO和mysqli的方法,但是我仍然没有让这个脚本正常工作。任何帮助将不胜感激。

<?php 
session_start(); 
if(isset($_SESSION['user_id'])){ 
    header("Location: /"); 
} 
require 'database.php'; 
$message = ''; 
if(!empty($_POST['email']) && !empty($_POST['password'])&& !empty($_POST['firstname'])&& !empty($_POST['lastname'])&& !empty($_POST['phone'])&& !empty($_POST['address'])&& !empty($_POST['city'])&& !empty($_POST['zip'])): 

//check to see if e-mail is already being used 
    //This method always says that the email is already in use, even if I am entering a new one. 
    /* 
    $records = $conn->prepare('SELECT * FROM users WHERE email = :email'); 
    $records->bindParam(':email', $_POST['email']); 
    $records->execute(); 
    $results = $records->fetch(PDO::FETCH_ASSOC); 
    if(count($results) > 0){ 
     $message = "Sorry, that E-mail address is already registered to an account."; 
    } 
    */ 
    //this one never says that the email is in use. 
    /* 
    $email = $_POST['email']; 
    $query = mysqli_query($conn, "SELECT * FROM users WHERE email='".$email."'"); 

    if(mysqli_num_rows($query) > 0){ 
     $message = "Sorry, that E-mail address is already registered to an account."; 
    } 
    */ 

    //this was the last method I tried, and it also never says that the email is in use. 
    try{ 
     $stmt2 = $conn->prepare('SELECT `email` FROM `user` WHERE email = ?'); 
     $stmt2->bindParam(1, $_POST['email']); 
     $stmt2->execute(); 
     while($row = $stmt2->fetch(PDO::FETCH_ASSOC)) { 
     } 
    } 
    catch(PDOException $e){ 
     echo 'ERROR: ' . $e->getMessage(); 
    } 

    if($stmt2->rowCount() > 0){ 
     //echo "The record exists!"; 
     $message = "Sorry, that E-mail address is already registered to an account."; 
    } 

    else{ 
     // Enter the new user in the database 
     $sql = "INSERT INTO users (email, password, firstname, lastname, phone, address, city, zip) VALUES (:email, :password, :firstname, :lastname, :phone, :address, :city, :zip)"; 
     $stmt = $conn->prepare($sql); 

     $stmt->bindParam(':email', $_POST['email']); 
     $stmt->bindParam(':password', password_hash($_POST['password'], PASSWORD_BCRYPT)); 
     $stmt->bindParam(':firstname', $_POST['firstname']); 
     $stmt->bindParam(':lastname', $_POST['lastname']); 
     $stmt->bindParam(':phone', $_POST['phone']); 
     $stmt->bindParam(':address', $_POST['address']); 
     $stmt->bindParam(':city', $_POST['city']); 
     $stmt->bindParam(':zip', $_POST['zip']); 

     if($stmt->execute()): 
      $message = 'Successfully created new user'; 
     else: 
      $message = 'Sorry there must have been an issue creating your account'; 
     endif; 
    } 

endif; 

?> 
+0

你得到什么错误? –

+0

嗨,我认为bindParam需要三个参数,例如$ sth-> bindParam(':calories',$ calories,PDO :: PARAM_INT)。最后一个是数据类型。这可能会导致它无法正常工作。查看http://php.net/manual/en/pdostatement.bindparam.ph获取更多信息 –

+0

尝试'bindParam(':email',$ _POST [“email”],PDO :: PARAM_STR,100);'in你的第一次尝试。 – Evochrome

回答

0

在做COUNT(*)服务器(MySQL的)将只分配内存来存储计数的结果,它的速度更快了。

你的这部分代码必须被纠正:

$records = $conn->prepare('SELECT count(*) FROM users WHERE email = :email'); 
$records->bindParam(':email', $_POST['email']); 
$records->execute(); 
$results = $records->fetch(PDO::FETCH_NUM); 
echo $results[0]; 
+0

好吧真棒,谢谢!我更新了查询并将if结果[0]放在if条件中,并解决了我的问题。 –

相关问题