Jump to content

*SOLVED* COUNT and Stuff


yarub

Recommended Posts

What I'm trying to do is make a really wacky counter. If those details are required for answering my question, let me know.

My database is setup with three fields: id, pid (profileid), and ip (ip address). What I'm trying to do is display them on their profiles.

[code]$query = mysql_query("select COUNT(ip) FROM table WHERE pid='$id'");
$row = mysql_fetch_array($query);
echo("
<b>Profile Views:</b> ".$row['COUNT(ip)']."
");[/code]
That obviously displays however many rows there are with the same pid. What I want to do is make it so if the ip field is the same, it will only count it once so that only unique ip addresses are shown, but all views are actually recorded.

Can anyone help?
Link to comment
Share on other sites

Not sure what you mean.
[code]$query = mysql_query("select COUNT(ip) FROM xb9_pviews WHERE pid='$id' GROUP BY ip");
$row = mysql_fetch_array($query);
echo("
<b>Profile Views:</b> ".$row['COUNT(ip)']."
");[/code]
This gives the exact same answer.
Link to comment
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.