csolution.php
public function netsolution(){
$data = array(
'networklarge' => base_url().'assets/images/network-large.jpg',
'productcss' => base_url().'assets/images/product.css
);
$this->load->view('netsolution', $data);
}
public function systemsolution(){
$data = array(
'systemsolution'=>'Type your connection content here',
'productcss' => base_url().'assets/images/product.css
);
$this->load->view('systemsolution', $data);
}
Hi,
I receive error in this line:
Parse error: syntax error, unexpected 'netsolution' (T_STRING), expecting ')' in C:\xampp\htdocs\IndonusaCI\application\controllers\csolution.php on line 41
line 41:
$this->load->view('netsolution', $data);
I wonder why?
Thanks before.