Code: Alles auswählen
//
// Calculate and return the rank number using the number of posts and days of a user
//
function calculate_rank($user_posts, $memberdays)
{
return( $memberdays * 3 + $user_posts * ($memberdays / 365) );
}
Code: Alles auswählen
//
// Calculate and return the rank number using the number of posts and days of a user
//
function calculate_rank($user_posts, $memberdays)
{
return( $memberdays * 3 + $user_posts * ($memberdays / 365) );
}