PHP检查用户是否存在PDO

时间:2017-05-27 02:40:31

标签: php mysql pdo

我试图实现这个功能,它将检查用户是否已经存在于我的数据库中,因为它会插入所有注册数据,但它似乎不起作用=(有人可以请帮我确定错误的位置。提前了解所有答案。

<?php

require '../ppuyakul/php/db_conn.php';


$message = '';

//Prepare date
$DOB = date("Y-m-d", strtotime( $_POST['year'].'-'. $_POST['month'].'-'. $_POST['day']));
$accessType = "0";

//Check enpty field
if(!empty($_POST['email']) && !empty($_POST['password']) && !empty($_POST['fullname']) && !empty($_POST['username']) && !empty($_POST['password_confirmation']) && !empty($_POST['gender']) && !empty($_POST['country']) && !empty($_POST['state']) && !empty($_POST['city']) && !empty($_POST['day']) && !empty($_POST['month']) && !empty($_POST['year'])):

  // Enter the new user in the database
  $sql = "INSERT INTO assignment2 (fullname, username, email, password, gender, country, state, city, DOB, type) VALUES (:fullname, :username, :email, :password, :gender, :country, :state, :city, :DOB, :type)";
  $stmt = $conn->prepare($sql);

  $stmt->bindParam(':fullname', $_POST['fullname']);
  $stmt->bindParam(':username', $_POST['username']);
  $stmt->bindParam(':email', $_POST['email']);
  $stmt->bindParam(':password', password_hash($_POST['password'], PASSWORD_BCRYPT));
  $stmt->bindParam(':gender', $_POST['gender']);
  $stmt->bindParam(':country', $_POST['country']);
  $stmt->bindParam(':state', $_POST['state']);
  $stmt->bindParam(':city', $_POST['city']);
  $stmt->bindParam(':DOB', $DOB);
  $stmt->bindParam(':type', $accessType);

  $chk = $conn->prepare("SELECT username FROM assignment2 WHERE username =  :name");
  $chk->bindParam(':name', $username);
  $chk->execute();

  if($chk->rowCount() > 0):
    $message = 'Error ! ! User already exists';
    else:
      if( $stmt->execute() ):
        $message = 'Successfully created new user';
          else:
            $message = 'Sorry there must have been an issue creating your account';
          endif; 
      endif;
    endif;
?>

1 个答案:

答案 0 :(得分:1)

根据@Paul T.我终于发现这里的解决方案是最终的代码,非常感谢你的帮助@Paul T.

  $username = $_POST['username'];
  $chk = $conn->prepare("SELECT username FROM assignment2 WHERE username =  :name");
  $chk->bindParam(':name', $username);
  $chk->execute();


  if($chk->rowCount() > 0):
    $message = 'Error ! ! User already exists';
    else:
      if( $stmt->execute() ):
        $message = 'Successfully created new user';
          else:
            $message = 'Sorry there must have been an issue creating your account';
          endif; 
      endif;
    endif;