Create an event / scheduling calendar with codeigniter and jquery

I am trying to create an event / scheduling calendar using codeigniter and jquery. I need to have several events on the same day, and I would like to make it as clean as possible.

I am wondering if anyone knows of good textbooks. Everything that I found does not allow adding several events for 1 day or having a really strange structure.

Thanks for the help!

Edit: Sorry for that, here are the ones I found http://net.tutsplus.com/tutorials/php/codeigniter-from-scratch-file-uploading-and-image-manipulation/ (quite simple and doesn't allow multiple events on the same day)

http://www.okadadesign.no/blog/codeigniter/create-an-event-calendar-using-codeigniter-and-jquery/ Not sure how I feel about it, or if it's easy to implement.

+4
source share
1 answer

You don’t know how you can’t do this, you can change any code and add additional events. Do you think the apps you found are too complicated for you? I would suggest going through the code and playing with them to find out. Then send questions when you need an explanation. It would be more useful, right now I have to wonder what a "really strange structure" is ...

As for your own example:

It works and adds a few events (I just added 2 for March 9th in the demo).

CodeIgniter allows a straightforward MVC (model view controller) structure (read CodeIgniter userguide if you're stuck or confused).

Not finding a very basic program, I don’t think that you will find one that matches your need / learning curve (this is what I suspect regarding the phrase “really strange structure”).

I would suggest just trying the CodeIgniter fragrance and working with it until you get what you need, or you find that it really does NOT fit your needs.

The best scenario is that you will learn a little about programming through other code. Enjoy it.

0
source

Source: https://habr.com/ru/post/1341866/


All Articles