Jump to content

Check if username exists


Tom10
Go to solution Solved by Barand,

Recommended Posts

I'm trying to use a prepared statement to check if a username exists please can someone explain prepared statements to me i've been on php.net and still don't understand

 

the statement:

$ucheck = $con->prepare("SELECT * FROM users WHERE username=?");
	$ucheck->bind_param("s", $username);
	$ucheck->execute();
	$ucheck->num_rows();

	if(mysqli_num_rows($con) > 0) {

		echo "The username:".$username."already exists!";

		exit();
	}
$username = $_POST['username'];
Link to comment
Share on other sites

 

Before you can get the number of rows you need the results

 

After the execute() either

$res = $smt->get_result();
echo $res->num_rows;

or

$smt->store_result();
echo $smt->num_rows;

Thanks, Barand i appreciate your help :)

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.