Jump to content

Active Pending


omesa

Recommended Posts

Hello,
I had posted earlier on a system am working on I got stuck earlier on but I managed to correct the error, now am stuck again.
I want to insert into my database the value "Active" if the points are less than 10, otherwise update the database with "Pending" value if the points are greater than 10, as in;

MPoints MStatus
9 Active
10 Active
11 Pending
12 Pending

Here's the code am currently using, it inserts into two rows, where the results are something like
MPoints MStatus
9
0 Active
10
0 Active
11
0 Active

[code]
$upoints = mysql_query("update members set MPoints = MPoints+1");
        $result2 = mysql_query("SELECT mpoints,mstatus FROM members WHERE id = '$id'");
        if (mysql_num_rows($result2) <= 10)
          { # not found
          $result = mysql_query("INSERT INTO members (mstatus) VALUES ('Active')");
         
          }
        else
        {
          $result = mysql_query("UPDATE members SET mstatus = 'Pending' WHERE id = '$id'");
         
        }
[/code]

How do I achieve this:
MPoints MStatus
9 Active
10 Active
11 Pending
12 Pending

any help would be greatly appreciated.
regards
clement
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.