ItSolutionStuff.com

How to Get and Set Config Variables in Codeigniter?

By Hardik Savani • November 5, 2023
PHP Codeigniter

Today, i would like to share with you how to set config item value in our codeigniter project. as well as i will share with you how to read that variable value that way we can use global variable in codeigniter 3 application.

We may need to define some global item like site url, site title, site meta data etc that way we can use it in our whole application. So here is very simple and basic example i am going to give you to define set and get config item value in Codeigniter 3 application.

we will use "$this->config" variable for set configuration item value. we will use "set_item()" and "item()" method for set and get value of array key.

So let's see very basic and simple example for config file item value.

Set Config Value:

$this->config->set_item('mainURL','itsolutionstuff.com');

Get Config Value:

$mainURL = $this->config->item('mainURL');

Example Config Value:

$this->config->set_item('mainURL','itsolutionstuff.com');


$mainURL = $this->config->item('mainURL');


print_r($mainURL);

exit;

I hope it can help you....

Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

How to Get All Tables List in Codeigniter?

Read Now →

Codeigniter Google Recaptcha Form Validation Example

Read Now →

Codeigniter Ajax Pagination using JQuery Example

Read Now →

How to implement and use DataTables in CodeIgniter?

Read Now →

Codeigniter Resize Image and Create Thumbnail Example

Read Now →

Codeigniter Drag and Drop Multiple Image Upload Example

Read Now →

How to Get Current Controller or Method Name in Codeigniter?

Read Now →

Codeigniter Dynamic Dependent Dropdown using Ajax Example

Read Now →

Codeigniter JQuery Ajax Image Upload Example

Read Now →

Codeigniter Ajax Infinite Scroll Pagination Example

Read Now →

Codeigniter Image Upload with Validation Example

Read Now →

How to Get Last Inserted ID in Codeigniter?

Read Now →

How to Get IP Address in Codeigniter?

Read Now →