I know this may be a beginner question, but here it goes. Right now, I am creating a student management app where student's info is stored in a DB (MySql) from an android application.
Every student, when registering, enters in a start date and end date. The minimum number of days between start and end date is 30 days.
Every 30 days a monthly survey is sent to the students based on the entered dates. If 7/30/2020
is entered as a start date, they will receive their firstly monthly survey on 8/29/2020
and subsequent monthly surveys every 30 days until end date (maximum 18 months).
Does anyone know how to go about setting these parameters or can point me in the right direction (perhaps to another stackpverflow thread)? I have a working registration system, but I'm not aware of how to capture time, use timestamps, or create a timeline for the monthly survey system.
I look forward to hearing from you!