Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6141955
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T18:19:16+00:00 2026-05-23T18:19:16+00:00

Okay, I have an achievement system and it works great except for correctly adding

  • 0

Okay, I have an achievement system and it works great except for correctly adding up the points. Here is an example of updating to the database if conditions are met:

if($members['Active']==1){    
    $Achievement1=mysql_query("SELECT * FROM ".
                                  "myachievements WHERE ".
                              "Handle='$members[Handle]' and AchievementId='1'");
    $Achievement2=mysql_num_rows($Achievement1);
    $tehdate=date('Y-m-d');
    $Points = '50';
    $newscore=$members['Points']+$Points;
    if ($Achievement2 == 0) {        
        mysql_query("INSERT INTO `myachievements` 
                         ( `Handle` , `AchievementId` , `Date` ) VALUES 
                            ('$members[Handle]', '1' , '$tehdate')"
                    )or die(mysql_error());

        mysql_query ("UPDATE members SET Achievement = 'Y' WHERE ".
                         "Handle = '$members[Handle]'")or die(mysql_error());
        mysql_query ("UPDATE members SET Points = '$newscore' WHERE ".
                         "Handle = '$members[Handle]'")or die(mysql_error());
    }

}

The achievement shown above is just for activating an account. I have about 35 achievements right now each with a different ID. So there are 35 sets of those two if statements in my main include file. My test user profile from my members table already meets the conditions for 19 of the total of 35 achievements. Everything updates in the database correctly except for adding the Points. The point total should be upwards of around 1000 points, but it always gives me 150. I’m not sure what I’m doing wrong. Any help would be appreciated.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T18:19:17+00:00Added an answer on May 23, 2026 at 6:19 pm

    I can not say specifically why it does not add the points, after moving the database stuff into functions of it’s own I would say it’s because you do not increase and store the base point value in $members['Points']:

    if($members['Active']==1)
    {
      $Points = '50';
      $newscore = $members['Points'] + $Points;
    
      if (0 == achievement_get_count($members['Handle'], 1))
      {
        achievement_add($members['Handle'], 1, date('Y-m-d'));
        achievement_set_points($members['Handle'], $newscore);
      }
    }
    
    /** achivement mysql functions */
    
    function achievement_get_count($memberHandle, $achievementId) {
      $Achievement1=mysql_query("SELECT * FROM myachievements WHERE Handle='$memberHandle' and AchievementId='$achievementId'");
      return mysql_num_rows($Achievement1);
    }
    
    function achievement_add($memberHandle, $achievementId, $date) {
      mysql_query("INSERT INTO `myachievements` ( `Handle` , `AchievementId` , `Date` )
        VALUES (
          '$memberHandle', '$achievementId' , '$date' )")
      or die(mysql_error());
    }
    
    function achievement_set_points($memberHandle, $points) {
        mysql_query ("UPDATE members SET Achievement = 'Y', Points = '$points' WHERE Handle = '$memberHandle'")or die(mysql_error());
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Okay I have seen some very similar questions here but none seem to be
Okay I have this RewriteRule which is supposed to redirect any request for the
Okay I have a large CRUD app that uses tabs with Forms embedded in
Okay I have a series of objects based on a base class which are
okay i have found the way to run a video in a image.... the
Okay I have updated my code quite a bit. I am getting a new
Okay I have updated my code a little, but I am still not exactly
Okay i have two models: posts and comments. as you can think comments has
Okay so I have the following Code which appends a string to another in
Okay so I have a scenario similar to the below code, I have a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.