Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Here's my script it verifies wether a username has been taken.

while ($row = mysql_fetch_array($result))
{
  $usname=$row['Username'];
}
if ($usname!=$uname)
{

} else {
  echo "Username taken!";
  die;
}

It works well. If a username is taken, it does not add it to the database, and will if it is unclaimed. But I always get this annoying error:

Notice: Undefined variable: usname in C:\xampp\htdocs\insert.php on line 29

I defined that variable!

Help...

share|improve this question
have you tried my suggestion – php NoOB ఠ_ఠ Nov 4 '12 at 9:20

4 Answers

up vote 3 down vote accepted

If mysql_fetch_array() returns null your while-loop will never launch, thus $usname will never be initialized.

Try declaring it on the line above, like this:

$usname = null;
while($row = mysql_fetch_array($result))
{
   $usname=$row['Username'];
}
If ($usname!=$uname)
{

}else{
   echo "Username taken!";
   die;
}
share|improve this answer
NICE! It works! Cutoes – user1797443 Nov 28 '12 at 3:33

You have not declared $usname as a variable. Try putting $usname=''; before the while loop

share|improve this answer

try using

mysql_fetch_array($result, MYSQL_ASSOC)
share|improve this answer

Use this one instead

$username = mysql_real_escape_string(htmlentities(trim($_POST['username'])));
$query = "SELECT FROM table WHERE username = '$username'";
$result = mysql_query($query);
if(mysql_num_rows($result) ==1)
{ // if there is one row with the username 
 echo "Username is already take";
} 
 else { 
 //print out 'username is not taken'... or put your queries here...
}
share|improve this answer
1  
This is prone to SQL injection attack! – d_inevitable Nov 4 '12 at 2:58
1  
bobby-tables.com – Michal Nov 4 '12 at 2:59
Not anymore, I have added a bit to it. smh with thumbdowns – php NoOB ఠ_ఠ Nov 4 '12 at 3:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.