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
https://forums.phpfreaks.com/topic/11638-solved-count-and-stuff/
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.