🖥️Create an open-source Inventory Management System using CodeIgniter web framework, Php and MySQL. Original source code from an Online Inventory Management Software found on https://codersfolder.com/2018/02/stock-management-system-v2-codeigniter/.
Hello,
Can someone help me understand this in MY_Controller
$this->load->view($page, $data);
Like I understand that it loads view but not sure what type of data is stored in those to variables
$page
$data
Here is complete function code
public function render_template($page = null, $data = array())
{
Hello, Can someone help me understand this in MY_Controller $this->load->view($page, $data); Like I understand that it loads view but not sure what type of data is stored in those to variables $page $data
Here is complete function code public function render_template($page = null, $data = array()) {
Thank you,