I want to update my database but its not working please help. Suppose i have current point (10 points) I want to Add 1 points, but it changes the current point (10 points) to 1. Not adding 10 to 1 = 11
$points = $user_home->runQuery("UPDATE tbl_users SET spoints = 'spoints' + 1 WHERE userID=:uid");
$points->execute(array(":uid"=>$_SESSION['userSession']));