how do I get birthdays from the current month and display
:glare:
It depend on how you record birthdays in the first place. So, how do you store the birthdays indicated by your users?
i think they are stored as MM/DD/YYYY
no clue, i'm an idiot.
I use PHPrunner and you can change it to make it look whichever way you want.
If we suppose that the birthdays are part of a MySQL database, stored in a DATE field, then you could get them with a query such as:
SELECT user_name FROM table_name WHERE MONTH(birthday) = MONTH(CURDATE())