This article mainly introduces the method of view in codeigniter to display array data through loop. An example analysis of the view method in codeigniter and The skills of array traversal have certain reference value. Friends in need can refer to it
The example in this article describes how the view in codeigniter displays array data through a loop. Share it with everyone for your reference. The details are as follows:
The controller is as follows:
?
3 4
5
6
9 10 |
} }
?>
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
Display array data<🎜>foreach($my_list as $item)<🎜> <🎜>{<🎜> <🎜>echo $item;<🎜> <🎜>}<🎜> <🎜>?> |