Answers for "ci constructor"

PHP
0

ci constructor

class upload extends CI_Controller {

    function __construct() {
        parent::__construct();
        $this->load->helper('form');
    }

    // rest of the class...
}
Posted by: Guest on January-31-2022

Browse Popular Code Answers by Language