Jump to content

Count Problem


priyadharshini

Recommended Posts

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

Link to comment
https://forums.phpfreaks.com/topic/216541-count-problem/
Share on other sites

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!

Link to comment
https://forums.phpfreaks.com/topic/216541-count-problem/#findComment-1125395
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.