.

.

Fatal error: Call to undefined function base_url() in codeIgniter

You have to load the url helper to access that function. Either you add
$this->load->helper('url');
somewhere in your controller, or you can put it into the application/config/autoload.php to be loaded automatically everywhere.


EmoticonEmoticon