View Single Post
  #1  
Old 07-01-2011, 08:08 PM
sensacion sensacion is offline
Member
 
Join Date: Mar 2010
Posts: 24
Credits: 4,410
sensacion
Exclamation Limit clicks/day to 10

hi guys, i want this: Limit clicks/day to 10
how I can insert the following code at the levelup.php
or you have another idea

Code:
$query = "SELECT * FROM ".$prefix."vote_voters WHERE adoptableid='$id' and date = '$date'";
$result = mysql_query($query);
$ctd = mysql_numrows($result);
if ($ctd > 99)		 { $article_title = "Error";
						 $article_content = "<font color='#cc1111'>This Pet has recieved the maximum of 100 clicks per day</font>"; }
else   if ($ctd <= 99) {

// Add to clicks, levelup and text return

}
Reply With Quote