Quote:
Originally Posted by lasto
church media one request if possible - can this be set to ignore zero posters ?
|
Another way to do that (but not as much control) is to change:
Code:
$birthdays = $DB_site->query("
SELECT username, email, languageid, birthday, userid
FROM " . TABLE_PREFIX . "user
WHERE birthday LIKE '$today-%' AND
usergroupid IN ($ids)
");
to
Code:
$birthdays = $DB_site->query("
SELECT username, email, languageid, birthday, userid
FROM " . TABLE_PREFIX . "user
WHERE birthday LIKE '$today-%' AND
usergroupid IN ($ids) AND lastpost !=0
");
That would only select users that have posted. I haven't tested it, but it should work.
EvilLS1's version gives you a lot more options.