View Single Post
  #2  
Old 04-11-2009, 08:00 PM
BMR777 BMR777 is offline
Member
 
Join Date: Jan 2011
Posts: 1,122
Gender: Male
Credits: 17,155
BMR777 is on a distinguished road
Default RE: is there anyway to find out how many times someone has clicked adoptables?

You could do:

PHP Code:
$query "SELECT * FROM vote_voters WHERE username = '$username'";
$result mysql_query($query);
$num mysql_numrows($result); 
The number of times a user clicked on ANY adoptable EVER will be stored in $num. :)

Brandon
Reply With Quote