First of I have searched everywhere for an answer and have not come across one so forgive me if I missed something somewhere!
I'm trying to check if a username exists before the Facebook registration form is submitted. It also seems like the registration can continue even though the validation hasn't been completed! Is there a way to stop the form from submitting before all validation is complete?
A lot of answers link to a post that apparently solves this but the part that is actually important is missing. The post with this answer is Here.
The contents of "Test02.aspx" is missing which is where I'm stuck.
The facebook part:
<fb:registration
redirect-uri="read.php/tools/echo"
fields="[{'name':'name'},{'name':'email'},{'name':'username','description':'Username','type':'text'},{'name':'password'}]"
onvalidate="validate_async">
</fb:registration>
<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<script>
function validate_async(form, cb) {
$.getJSON('test02.aspx?username=' + form.username + '?callback=?',
function(response) {
if (response.error) {
// Username isn't taken, let the form submit
cb();
}
cb({username: 'That username is taken'});
});
}
</script>
What I don't know is what to put in test02.aspx. I would prefer to use php to check the database but I can't figure it out!
Any help would be appreciated!
Thank you in advance.
Mishka
--Update--
Some changes to client side:
<script>
function validate(form, cb) {
$.getJSON('PHP/fb_check_user.php?username=' + form.username,
function(data){
$.each(data,function(name,error){
if (error === 'true')
{
cb({username: 'That username is taken'});
}
else
{
cb();
}
});
}
);
};
</script>
To get it to work i had to change this line:
$.getJSON('PHP/fb_check_user.php?username=' + form.username + '?callback=?',
to:
$.getJSON('PHP/fb_check_user.php?username=' + form.username,
Server side: (fb_check_user.php)
<?php
//Connect to database
$user=$_GET['username'];
$query = mysql_query("SELECT usr FROM members WHERE usr = '$user'");
if (!mysql_num_rows($query))
{
$result = array('error' => 'false');
}
else
{
$result = array('error' => 'true');
}
echo json_encode($result);
?>