![]() |
Codeigniter Search and filters - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5) +--- Forum: General Help (https://forum.codeigniter.com/forumdisplay.php?fid=24) +--- Thread: Codeigniter Search and filters (/showthread.php?tid=68001) |
Codeigniter Search and filters - balasourav - 05-08-2017 In my project i need profile page search page, simple search. And I need filters asec and desc(Needed in ajax). Please give some sample codings. I beginner. I cant find like as. Please help me. RE: Codeigniter Search and filters - raknjak - 05-10-2017 Here is the tutorials section https://www.codeigniter.com/user_guide/tutorial/index.html RE: Codeigniter Search and filters - balasourav - 05-10-2017 (05-10-2017, 08:32 AM)raknjak Wrote: Here is the tutorials section Thank you Raknjak. But i already Know About tutorials. But i cant find search (Ajax Calling) And Filter. I dont know about that. Please send me some examples. Thank you so much for your reply. RE: Codeigniter Search and filters - rtenny - 05-15-2017 There is no quick answer to this and code examples will not help much either as you do not provide enough information. But if you are a beginner start with learning about HTML forms, form validation in JavaScript as well as in PHP, sending data to PHP via ajax. Once you understand those 3 things you should be able to complete your task. RE: Codeigniter Search and filters - reactionstudio - 05-22-2017 Adding to what rtenny said, you will also need some knowledge of SQL and to review the Active Record documentation in depth, i have developed complex filtering systems for clients as part of bespoke CRM solutions in the past and without the SQL knowledge you will struggle even with the HTML, JS and PHP knowledge. RE: Codeigniter Search and filters - rtenny - 05-26-2017 (05-22-2017, 04:11 AM)reactionstudio Wrote: Adding to what rtenny said, you will also need some knowledge of SQL and to review the Active Record documentation in depth, i have developed complex filtering systems for clients as part of bespoke CRM solutions in the past and without the SQL knowledge you will struggle even with the HTML, JS and PHP knowledge. Very true, I totally forgot about the SQL part of things. |