hello,
I will make a share content(share posts or news in facebook,twitter,google+,pdf,...)with the codeigniter framework
how can I do it?
This is an archived forum and the content is probably no longer relevant, but is provided here for posterity.
The active forums are here.
June 09, 2012 3:33am
Subscribe [2]#1 / Jun 09, 2012 3:33am
hello,
I will make a share content(share posts or news in facebook,twitter,google+,pdf,...)with the codeigniter framework
how can I do it?
#2 / Jun 10, 2012 8:03am
Start out using the Control Model View structure and CRUD functionality as a guide.
I would make a Controller for each main page with Create Read Update and Delete functions for the respective tables. Just make sure to keep your Controller light and pass all of the code heavy tasks to your model for processing, and also pass all returned queries from your model to a loaded view.
Let me know if this helps!