Tag : Codeigniter
ItSolutionStuff.com have tutorials for Codeigniter tag, here you can study articles of Codeigniter tag, Codeigniter tag posts collection, most popular and useful tutorials of Codeigniter tag, here you can find list of all relevant posts and example about Codeigniter tag, we have lists of tutorials and examples about Codeigniter tag. very simple and quick example collection of Latest Codeigniter tag.

Codeigniter Remove index.php using htaccess
Hi Developer, I want to share this tutorial for codeigniter remove index.php from url using htaccess file. i will show you code for how to remove index php from url in codeigniter using htaccess. htaccess file provide a control to remove index.php name from url and also we can some validation on ht.....

Codeigniter Get File Extension Before Upload
Are you looking for codeigniter get extension of file before upload then i will help you to get file extension in codeigniter from file name. we can get file extension using pathinfo() php function. I was new to codeigniter application. i was using codeigniter 3 version. i was doing image upload ta.....

Codeigniter Check Request is Ajax Example
Sometimes, we need to check request is ajax or not in codeigniter 3 application. If you want to call same method but if request is ajax then you perform different, then you can do by using $this->input object. In Codeigniter 3 $this->input object provide is_ajax_request() method to check request is.....

PHP Codeigniter Curl Post Request Example
In this tutorial, i will give you example of how to fire curl post request with codeigniter. it will help to get third party api data using curl request in codeigniter. you can fire post request, get request, put request and delete request in curl codeigniter 3. I will suggest to use code php curl .....

How to get current month in Codeigniter?
In this example, we will learn how to get current month data in codeigniter. we can get current month data using codeigniter query builder. we will use MONTH() and YEAR() mysql function for getting current month data. I will share with you simple example example of getting current month data in cod.....

Codeigniter Form Validation with Error Message
Form Validation is a primary requirement of every project, so i will give you simple example of form validation in codeigniter 3 application. we will use form_validation library for add form validation with error message display in codeigniter. we can use default following validation rules of codei.....

Codeigniter - add/remove multiple input fields dynamically with jquery
In this example, i will help you learn dynamically add multiple input fields and submit to database with jquery and codeigniter 3. we can add remove input fields dynamically with jquery and submit to database in codeigniter. In this example, we will create one table "tagslist" and create one form f.....

Codeigniter Compress Image Size Example
We always looking for reduce image size when upload picture on our web application. we will learn how to compress and resize uploaded image in codeigniter 3 project. we will use image_lib library for compress image size in codeigniter. you can easily compress any image type like png, jpg, jpeg, gif .....

Codeigniter - Upload Multiple File and Image Example
In this tutorial, i will share with you how to upload multiple image in codeigniter 3 application. we can easily do multiple file upload example in codeigniter. i will give you simple example with step by step to upload multiple file in codeigniter 3 application. we will use upload library for mult.....

How to fetch single row from database in php codeigniter?
If you require to get only one record from database table using codeigniter query then you can do it using row(). we can easily return one row from database in codeigniter. I will give you simple example of fetch single record from database using mysql codeigniter. Sometime we need to get only one.....

How to use sweet alert for delete confirm in Codeigniter?
In this example, i will share with you how to use sweetalert as confirmation box in codeigniter 3 application. we will use sweet alert before delete in codeigniter. we will use delete event with ajax, use sweet alert confirmation box with cancel and yes button in php codeigniter application. If you.....

How to create custom library file in codeigniter 3?
Sometimes, we might be require to make custom library in php codeigniter project. so we can load custom library quickly and use that functions. you can see step by step tutorial of creating custom library file in codeigniter 3 application. just follow bellow few steps to create your own library fo.....