Jump to content

Recommended Posts

I'm inserting users into my database using this code

// Make a MySQL Connection
mysql_connect("mydatabase", "login", "password") or die(mysql_error());
mysql_select_db("database") or die(mysql_error());

// Add user to database
mysql_query("INSERT INTO members (userid, paid)
VALUES ('$user_id', '0')");

 

the problem is everytime the user load that page it adds him how do I only add if them if there arent added already?

 

thanks

 

Link to comment
https://forums.phpfreaks.com/topic/199321-really-simple-question-inserting-data/
Share on other sites

You would need to run a select query first to check if the user already exits in the database.

Check if the user_id already exists.

 

Then set up an if statement to say that if the Select query showed no existing member, then run the insert query.

$sql="SELECT userid FROM members WHERE userid='$user_id' LIMIT 1";

$result = mysql_query($sql);

$numrows = mysql_num_rows($result);

if($numrows == 0 ) {
    mysql_query("INSERT INTO members (userid, paid) VALUES ('$user_id', '0')");
}
else {
    //already inserted
}

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.