I want to add a functionality to my site that changes the images shown depending on the day. I haven't been able to quite wrap my head around it as I'm a bit of a novice. My images are stored in images/week2/image_day_4. I am going to try to use a couple incrementing variables to access the image values, so if the day is day 4 in week 2 of membership the code should read something like
"images/week_" + week + "/image_day_" + day;
every day since membership started, i'll increment day.
Is there a better way to do this?