Hello…i need help….how can i work with a matrix on th view file….can i do something like this..
<?=$data['box1']['title']
...
i don’t know if it possible…
So in your controller you’re passing an array to the view as such:
$data[‘box1’][‘title’] = “Title”;
?
Your view would display the variable as such:
<?=$box1[‘title’];?>
Developer13.com Here is my nicely documented CodeIgniter Base CRUD Model