I wont add limit to inbox folder... max 50 inbox after users can deleted 4 continue use...
how I can add this???
tnks ;)
how I can add this???
tnks ;)
$res = mysql_query("SELECT COUNT(*) FROM messages WHERE receiver = $id");
$arr = mysql_fetch_row($res);
if($arr[0] >= 50)
{
// Do Not send message and display error to user such as
echo "This users inbox is full, please wait for them to clear their inbox before sending a message";
}
else
{
// SEND MESSAGE CODE HERE (i.e. mysql query to insert into database)
}
Comment