Very cool! Thanks for that addition. Here's an addition to email the greeter when the thread is created (it will email the birthday greeting).
Find:
Code:
$greeter=1; //His User ID
The number (1) may be different.
Below that add:
Code:
$greetermail="youremail@yourdomain.com";
Change the email address to your own.
Find:
Code:
$DB_site->query("UPDATE user SET posts=posts+1 WHERE userid=$greeter");
Below that add:
Code:
// email the admin
$birthday_greeting_thread=strip_tags($birthday_greeting_thread);
vbmail_start();
vbmail($greetermail, $title3, $birthday_greeting_thread);
vbmail_end();