I'm trying to get a list of file names using the url helper but I'm getting the following error:
Call to undefined function get_filenames()
I auto-loaded the url helper and then explicitly loaded it in the Controller and I still get the error. Why am I getting this error?
Controller:
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Downloads extends CI_Controller {
public function index()
{
$this->load->helper("url");
$this->template->write_view('content', 'download_view');
$this->template->render();
}
}
View:
<? get_filenames("/somefolder"); ?>
