The $ this-config-set_item does not change the value of the variable in the config.php - CODEIGNITER

0

The $this->config->set_item does not change the value of the variable in config.php

Code in the controller:

$premisa1 = $this->input->post('numero_premisas');
$this->config->set_item('premisass',$premisa1);

Code in config.php :

$config['premisass'] = '1';

In the config.php start the variable in 1 but with the instruction of the controller that value should be updated and it does not

    
asked by Javier Valero 27.02.2018 в 19:33
source

0 answers