Problem I’m using this class as Modal in my CodeIgniter project, as I’m newbie in CI, I wanna know if […]
Tag: codeigniter
Password reset functionality in Codeigniter 3
Problem I am working on an online newspaper/blogging application with CodeIgniter 3.1.8 and Twig. (I use the Twig template engine […]
Codeigniter – in the view or in the controller?
Problem Is this correct? Or am I overloading the responsibilities of the view? <table class=”table table-striped table-hover”> <thead> <tr> <th>Estado</th> […]
Forgotten password logic
Problem I’m just trying to see if anyone disagrees with the way I’m handling my logic for this. Something doesn’t […]
Database design for an online learning application
Problem It is an online learning application with different types of learnable items, that different users learn. The users learn […]
Controller method optimization
Problem I have the following function for validating users facebook information against the rules setup in the database for users. […]
Codeigniter models optimization
Problem I have two tables: tableA aid name age sex email password tableB bid idno aid The steps should be […]
Is this a sensible form iteration pattern for a web form with an unknown number of fields?
Problem I’m designing a small intranet-based time-tracking web app that accepts an unknown number of data “rows” which each consist […]
A contact form with CodeIgniter and Twig
Problem I am working on an online newspaper/blogging application with CodeIgniter 3.1.8 and Twig. I use the Twig template engine […]
Where should I put menu items in MVC with PHP – Model or Controller?
Problem This is my first attempt with MVC and I almost get it, but a small thing bothers me. I […]