CodeIgniter Forums
Reccuring days - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5)
+--- Forum: General Help (https://forum.codeigniter.com/forumdisplay.php?fid=24)
+--- Thread: Reccuring days (/showthread.php?tid=62571)



Reccuring days - Midhun Mohanan P - 07-31-2015

I am new in codeigniter ..


I am going to create a bus ticket booking system in codeigniter.
i want to know how to add reccuring days .
Please any one help me.


RE: Reccuring days - msteudel - 08-03-2015

How would you do it without codeigniter? Once you tell us that, then we can show you how to do it in codeigniter ...


RE: Reccuring days - PaulD - 08-04-2015

Hi,

For an organizer app I used a simple date for next event, and an ID for repeating period if re-occurring. Then when the event happened I simply looked up the period on the relevant table, added it to the event date, and overrode the event date. Then you can have daily, weekly, monthly, 3 weekly etc etc quite easily.

Is that what you meant?

Hope that helps,

Paul.