Jump to content

How to check if data exists in SQL database ?


abyssal

Recommended Posts

Hello. I want to check if an e-mail address is stored into a database. I've found this type of code:

 

function verifmail($email)
{
    db_connect();
    if (mysql_num_rows(mysql_query("SELECT email FROM users WHERE email='$email';")))
    {
        return 1;
    }
    else
    {
        return 0;
    }
}

 

Is it correct ? Is there any other way?

Link to comment
Share on other sites

Well, you can write it different ways, but the underlying process will be the same. You need to query the DB for existing records. I will say, however, that having an if/else statement that returns 1 or 0 is superfluous. Simply return the condition. Here is how I would write that:

 

//returns TRUE if email exists, else FALSE
function verifmail($email)
{
    db_connect();
    $email = mysql_real_escape_string($email);
    $query = "SELECT email FROM users WHERE email='$email' LIMIT 1";
    $result = mysql_query($query);
    return (mysql_num_rows($result)==1);
}

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.