Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in SQL by (20.3k points)

I have made this code for giving out +1 point, but it doesn't work properly.

mysql_query("

    UPDATE member_profile 

    SET points= ' ".$points." ' + 1 

    WHERE user_id = '".$userid."'

");

the $points variable is the user´s points right now.. I want it to plus one to it.. so example if he had like 5 points, it should be 5+1 = 6.. but it doesnt, it just changes to 1

What have I done wrong? thank you

1 Answer

0 votes
by (40.7k points)

Try using the below query:

mysql_query("

    UPDATE member_profile 

    SET points = points + 1

    WHERE user_id = '".$userid."'

");

Related questions

0 votes
1 answer
0 votes
1 answer
0 votes
1 answer
0 votes
1 answer
0 votes
1 answer

Browse Categories

...