CodeIgniter Forums
event calendar - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived General Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=21)
+--- Thread: event calendar (/showthread.php?tid=24577)



event calendar - El Forum - 11-13-2009

[eluser]kakap[/eluser]
hello every body Smile
any body has experience in making event calendar using CI??
share your knowladge please..

thank you


event calendar - El Forum - 11-13-2009

[eluser]Flemming[/eluser]
Hi kakap. There are so so so many ways that you could approach this! Do you just want a listing grouped by month/year? How will you add and edit the events? The very simplest way to begin would be with an 'events' table in your database: id, date, title, details. Then run a query:
Code:
$this->db->order_by('date',desc);
return $this->db->get('events');

then in your view you can loop through the result set and hey preso! an events calendar!

Or you could plug the table into the CI calendar class.

Hope that helps?


event calendar - El Forum - 11-16-2009

[eluser]kakap[/eluser]
ok,I should try 1st.thankyou =)