Jump to content

MYSQL Check Database


akiratoya13

Recommended Posts

MYSQL version is 1.4

Hi guys, I want to search if any data that have been added to my database.

I tried all ways in the book and tried my self.. But I couldn't do that..

 

example:

a member has username akira.

Now a new guest want to be a member with the same name ( akira )..

I want to check my database if there is any username akira..

What statement I need? Thanks.. Sorry if it's a beginner question.. But I'm really confuse about it. >_<

Link to comment
Share on other sites

$sql=mysql_query("select * from tablename where username='$_post["username"]'");

if($result=mysql_num_rows($sql)==1)

{

$rand=rand(0,9);

echo "username already exists";

echo "you can use $_post["username"].$rand ";

}

else

{

echo "not exists";

}

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

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