Contekan membuat helper di Codeigniter 3
Membuat helper di codeigniter 3 Buat file didalam folder application > helpers contoh : function_helper.php isinya : <?php defined ( 'BASEPATH' ) OR exit ( 'No direct script access allowed' ); if (! function_exists ( 'userSession' )) { function userSession () { $ci = & get_instance (); //digunakan untuk memanggil function di codeigniter, //misal session return $ci -> session -> userdata (); } } Kemudian panggil/load di construct controller function __construct () { ...