Jump to content

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

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

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