User monthly payment system
Posted
by
SomCollection
on Stack Overflow
See other posts from Stack Overflow
or by SomCollection
Published on 2012-09-17T12:24:45Z
Indexed on
2012/09/19
3:38 UTC
Read the original article
Hit count: 119
I want to create a monthly payment system for community members, at this point I have figured out that I need the following tables in my mysql database.
Edited
Users table
user_id, first_name, last_name
Payment table
payment_id,user_id,amount,due_date,payment_date,total
What I need to display list of users who did not pay 6th of every month.
How do I do this? And once the last day of the month is reached, how do I move to the next month?
© Stack Overflow or respective owner