Skip to Content
PHPCODE
October 5, 2018
CODEIGNITER BITAUTH MASTER IN CONTROLLER
CODEIGNITER BITAUTH MASTER IN CONTROLLER <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');…
August 8, 2018
CodeIgniter Image File Upload
Image File Upload in Codeignter alter TABLE articles add COLUMN image_path varchar(255) step 1 :…
August 8, 2018
CodeIgniter Project Completed.
Project Complated in codeignter step 1 : created articlsmodel.php function find in model { $q=$this->db->from(‘articles’)…
August 6, 2018
CodeIgniter Fixing bugs & adding date
Fixing bugs & adding Date in codeinter ALTER TABLE articles add COLUMN created_at timestamp ALTER…
August 6, 2018
CodeIgniter DRY – DON T REPEAT YOURSELF
Dry Don’t Repeat Yourself step 1: Created __construct function public function __construct() { parent::__construct(); if(!…
August 5, 2018
CodeIgniter Search with Pagination
Search with Pagination in Codeingter Step 1 : Created search_results.php in view <?php include (‘public_header.php’);?>…
August 5, 2018
CodeIgniter Search Articles
Serach Articles in Codeigniter step 1:- Created model search function public function search($query) { $q=$this->db->from(‘articles’)…
August 5, 2018
CodeIgniter Pagination Serial Numbers
Pagination Serial Number in Codeigniter step 1: created view in function <?php if(count($articles)): $count=$this->uri->segment(3,0); foreach($articles…
August 5, 2018
Codeigniter Public Articles Listing
public Articles Listing in Codeigniter Step 1 :- created view in articles_list.php <?php include (‘public_header.php’);?>…
August 5, 2018
CodeIgniter Customize Pagination Design
Created Customize Pagination Design step 1 :- Create Controller function dashboard public function dashboard() {…
PHPCODE © 2023