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