I'm using bvalidator (jquery validation plugin) to check if a username exists in the database. They have an example on their documentation. However, I have no idea how it works. You can read more on that example here: http://karmela.fsb.hr/~bmauser/bvalidator/documentation.html#serversidevalidation
I tried creating my own. However, It always tells me that the username is already taken no matter what... I'm a complete newbie when it comes to AJAX. I barely know it. So anyway, here's what I created so far...
index.php (the main page)
<script type="text/javascript">
$(document).ready(function () {
$('#register').bValidator(optionsRed);
});
function checkUsername(username) {
$.post("checkusername.php", { username: username }, function(data) {
if (data == 0) {
ret = true;
} else {
ret = false;
}
return ret;
});
}
</script>
<input type="text" name="username_register" id="textstyleid" data-bvalidator="checkUsername,required,rangelength[5:20]" data-bvalidator-msg="This username is not valid or already taken."/>
checkusername.php (checks if username exists)
<?php
require '../connect.inc.php';
if (isset($_POST['username'])) {
$username = mysql_real_escape_string($_POST['username']);
if (!empty($username)) {
$username_query = mysql_query("SELECT COUNT(uid) FROM users WHERE username='$username'");
$username_result = mysql_result($username_query, 0);
if ($username_result == 0) {
return 0;
} else if ($username_result == 1) {
return 1;
}
}
}
?>
Edit I noticed a 404 error. I fixed that. The PHP and AJAX is working. It gives me a 0 or 1 depending on the text entered in the preview. However, the problem still exists. I think its because of this line of code. I don't really understand what it means. What is data?:
if (data == 0) {
ret = true;
} else {
ret = false;
}
return ret;