This commit is contained in:
Olusesan Ameye
2021-01-31 17:36:50 -05:00
parent a385414015
commit 87615b54a2
3 changed files with 77 additions and 0 deletions
@@ -0,0 +1,22 @@
<?php
class Start_Controller extends MCORE_Controller {
public $data = array();
function __construct() {
parent::__construct();
// this is your constructor
$this->load->helper('form');
$this->load->helper('url');
}
}