priyadharshini Posted October 22, 2010 Share Posted October 22, 2010 Hi Am doing a matrimonial site. Here i've set only 30 profiles for a gold member. Am using a code like given below but this increments counter whenever a member sees the same profile also(which is already seen). But i want to increment the counter only when different profiles are seen. How to do that. Suggest me some ideas. if($_SESSION['GoldMember']==1) { $a="update users set counter=counter+1 where UserID=".$_SESSION['UserID']; $b=mysql_query($a,$conn); } Thank u Quote Link to comment https://forums.phpfreaks.com/topic/216541-count-problem/ Share on other sites More sharing options...
Hybride Posted October 22, 2010 Share Posted October 22, 2010 Am not sure how the rest of your code goes, so I would suggest putting a session variable that includes the user id (as you already have) and a session already viewed id ($_SESSION['previouslyViewed']) with it being set to either 0 (false) or 1 (true). When the user views that page, the counter would increment in the database (as the pV is 0) and then the pV would be set to 1. Hope that helps! Quote Link to comment https://forums.phpfreaks.com/topic/216541-count-problem/#findComment-1125395 Share on other sites More sharing options...
priyadharshini Posted October 25, 2010 Author Share Posted October 25, 2010 Hi, If a first user views a profile and set it to 1 means,when another user sees the same profile it will be 1 again so the counter is not incrementing.what to do for that? Quote Link to comment https://forums.phpfreaks.com/topic/216541-count-problem/#findComment-1126074 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.