codeigniter中view通过循环显示数组数据的方法
程序员文章站
2023-02-17 16:28:34
本文实例讲述了codeigniter中view通过循环显示数组数据的方法。分享给大家供大家参考。具体如下:
controller如下:
本文实例讲述了codeigniter中view通过循环显示数组数据的方法。分享给大家供大家参考。具体如下:
controller如下:
<?php class simplecontroller extends controller { function index() { $data['my_list'] = array("do this", "clean up", "do that"); $this->load->view('index', $data); } } ?>
index view如下:
<html> <head> <title>display array data</title> </head> <body> <h1>display array data</h1> <?php foreach($my_list as $item) { echo $item; } ?> </body> </html>
希望本文所述对大家基于codeigniter的php程序设计有所帮助。
上一篇: PHP获取二叉树镜像的方法
推荐阅读
-
codeigniter中view通过循环显示数组数据的方法
-
codeigniter中view通过循环显示数组数据的方法_PHP教程
-
codeigniter中view通过循环显示数组数据的方法,codeigniterview
-
codeigniter中view通过循环显示数组数据的方法,codeigniterview
-
codeigniter中view通过循环显示数组数据的方法
-
codeigniter中view通过循环显示数组数据的方法_php实例
-
codeigniter中view通过循环显示数组数据的方法
-
codeigniter中view通过循环显示数组数据的方法,codeigniterview_PHP教程
-
codeigniter中view通过循环显示数组数据的方法_PHP教程
-
codeigniter中view通过循环显示数组数据的方法_PHP