Have you ever developed your application locally, then taken it live on your production server and had to manually change your app configuration to match…
1 CommentCategory: CodeIgniter
CodeIgniter is an Application Development Framework – a toolkit – for people who build web sites using PHP. Its goal is to enable you to develop projects much faster than you could if you were writing code from scratch, by providing a rich set of libraries for commonly needed tasks, as well as a simple interface and logical structure to access these libraries. CodeIgniter lets you creatively focus on your project by minimizing the amount of code needed for a given task.
$the->db->set() – This function enables you to set values for inserts or updates. $this->db->where() – This function enables you to set WHERE clauses $this->db->update() –…
1 CommentThis post is about CodeIgniter Dropdown Menu(all so know as a select box) validation.See the below code samples for better understanding. Create View : application/views/welcome_message.php…
2 CommentsThickBox is a webpage UI dialog widget written in JavaScript on top of the jQuery library. Its function is to show a single image, multiple…
Leave a CommentIn this tutorial, I will show you integrating Captcha in your CodeIgniter application. We gonna use CI’s builtin captcha helper and contains functions that assist…
6 CommentsIn this tutorial, We gonna use CodeIgniter built-in pagination library to show the paginated list of items on your web page. Here are the steps…
Leave a CommentI always use this CodeIgniter Helper for all of my CI projects to Highlight Current or active link in the menu bar. How it works…
4 CommentsThis Post is About Creating Links in CodeIgniter, To Create Links in CodeIgniter you have to load CI URL Helper, How to load CI’s URL…
9 CommentsRSS (Real Simple Syndication) feeds can be found everywhere on the internet. News and information are delivered using it and discussions forums, blogging sites enable…
3 CommentsCodeIgniter has lot of Useful helper functions and libraries , Classes. Here we are going to Develop a Multilingual Site Using CodeIniger Language Class and…
3 CommentsYou can Configure the CodeIgniter to Dynamically distinguish between development, test and production servers, It’s Better to keep your Development, testing, and production Config options…
Leave a CommentIn general, we write all validation rules in Controllers, This is perfectly fine, but can lead to a large amount of validation code within your…
1 CommentCodeIgniter is a PHP framework, CodeIgniter has a number of helpers and libraries, which will reduce the development time and we can write more reliable…
41 CommentsCodeIgniter is a PHP framework, CodeIgniter has a number of helpers and libraries, which will reduce the development time and we can write more reliable and bugs free…
9 Commentsyou can get base url of codeIgniter applicatoin with $this->config->base_url();, you can also call base_url(), but to use the function you need to load codeigniter…
Leave a Comment