In CodeIgniter you can get current page URL using CodeIgniter URL helper function current_url(). Now you knew how to get current page URL, then append…
4 CommentsCategory: 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.
I would like to explain about removing index.php from codeigniter based application urls with .htaccess.To hide “index.php” from the URL, add an .htaccess file to…
Leave a CommentWe can improve Codeigniter application speed with simple tactics. I will show very simple steps, which will improve your CI app speed. Enable Gzip Compression…
5 CommentsWe often need last inserted ID for different reasons(for example when you need to store foreign key), Immediately after a record has been inserted into…
2 CommentsCodeIgniter is one of the PHP MVC Framework with minimum learning curve best documentation and easy workflow, in CodeIgniter we can easily Enable or Disable…
3 CommentsWe can Set, Get and Delete Cookies with CodeIgniter Cookie Helper, Cookie Helper contains functions that assist in working with cookies. Before using Cookie Helper…
9 CommentsWith the help of the CodeIgniter Built-in function redirect(), we can refresh or redirect the page based on the given parameters. CI’s redirect() resides in…
13 CommentsCodeIgniter has a nice helper function to download files. It is a nice way to download from server without any hassle just writing one single…
Leave a CommentBefore writing any script login into your installed vanilla forum, go to addons section , Click on Plugins , in that page you will find…
8 CommentsCodeIgniter Helper Function are available anywhere in the code, more than 20 CI Helpers are there(URL, Form, Directory, …etc). You can Easily Extend CodeIgniter Helpers.…
1 CommentCODEIGNITER – GETTING STARTED Everything You Need to Get Started With CodeIgniter Easy Development With CodeIgniter BECOME A CODEIGNITER PRO IN 15 DAYS! Day 1:…
Leave a CommentYou can delete files from the server with PHP’s file system function unlink() which will delete or remove the files. It can remove all type…
7 CommentsI always use this Base Controller for My CodeIgniter App Development, It makes my app portable and flexible.We can define all Global settings in Base…
6 CommentsGET data is simply disallowed by CodeIgniter since the system utilizes URI segments rather than traditional URL query strings (unless you have the query string…
Leave a CommentToday, we are Going to Use Codeigniter URI Segments to rule all Methods within the controller, means one Controller will load views based on the…
Leave a Comment