Posts

Showing posts from September, 2017
Image
codeigniter pagination with search demo : - In This post We will learn How to implement pagination with filter in codeigniter. We know that filter is required for large data handling.So in this tutorial you learn codeigniter search in easy spates. Make database phpcooker_script and import this. - - - - Database: `phpcooker_script` - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Table structure for table `test` - - CREATE TABLE IF NOT EXISTS `test` (   `test_id` int ( 10 ) NOT NULL AUTO_INCREMENT ,   `test_title` varchar ( 120 ) NOT NULL ,   `test_description` text NOT NULL ,   `test_order` int ( 11 ) NOT NULL ,   `test_status` enum ( '0' , '1' ) NOT NULL ,   PRIMARY KEY (`test_id`) ) ENGINE = MyISAM   DEFAULT CHARSET = latin1 AUTO_INCREMENT = 7 ; - - - - Dumping data for table `test` - - INSERT INTO `test` (`test_id`, `test_title`, `test_descrip