Hi all, I would like a way to limit the number of messages per day that each user can write in the shoutbox my chat lavalair (for example, each user can write a maximum of 5 messages in the shoutbox every 24 hours) thanks to who can help me
$oras = time() - 24*60*60;
$howmuch = mysql_fetch_array(mysql_query("SELECT COUNT(*) FROM ibwf_shouts WHERE shouter = '".$uid."' AND shtime > '".$oras."'"));
if ($howmuch[0] > 4)
{
echo "<div align=\"center\">";
echo "<img src=\"../images/notok.gif\" alt=\"X\"/>";
echo "you have reached the maximum of 5 shouts / day";
echo "</div>";
echo "</body>";
echo "</html>";
exit();
}
Comment