Welcome Guest, Not a member yet? Register   Sign In
event calendar
#1

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

thank you
#2

[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?
#3

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




Theme © iAndrew 2016 - Forum software by © MyBB