Jump to content

Check if username exists


Tom10

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
https://forums.phpfreaks.com/topic/295224-check-if-username-exists/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.