Home > Backend Development > PHP Tutorial > PHP数组怎么显示在前台页面

PHP数组怎么显示在前台页面

WBOY
Release: 2016-06-13 11:52:09
Original
1458 people have browsed it

PHP数组怎样显示在前台页面
PHP查询数据库的数据$list,在前台显示的话用volist循环。现在需要把这个数组传到前台页面,数组不能变。怎么传
------解决方案--------------------
如果是tp  action里面

 $this->assign("list",$list);
Copy after login

view里面
<ul><br /><volist name='list' id='vo'><br />    <li>vo["表中字段"]</li><br /></volist><br /></ul>
Copy after login

------解决方案--------------------
结果serialize序列化保存session,取的时候从session获取,并且unserialize反序列化。
------解决方案--------------------
路过,不明白什么意思

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template