Trying to check if username already exists in MySQL database using PHP

后端 未结 8 1882
无人共我
无人共我 2020-12-28 10:12

I\'ve looked at the many other posts that were similar to my issue and implemented their solutions (as far as I can tell) as exactly as I could. However, every time I execut

8条回答
  •  粉色の甜心
    2020-12-28 10:47

    PHP 7 improved query.........

    $sql = mysqli_query($conn, "SELECT * from users WHERE user_uid = '$uid'"); if (mysqli_num_rows($sql) > 0) { echo 'Username taken.'; }

提交回复
热议问题