??? ??? ??? ??
???? [PHP]??? ??? ??? ? ?? ??? ?????.
???? ???? ? ?? ????? ?????? ???? ?? ???? ??? ?? ? ??? ? ??? ???
?? of all ??? ? ?? ??:
??? ? ???? ?????. ??? ??? ????.
<!DOCTYPE html> <html> <head> <title>成員</title> <style> dl{ text-align:center; border:2px solid #008800; margin-top:100px; margin-bottom:100px; margin-right:700px; margin-left:700px; } </style> </head> <body> <dl> <h1>成員管理</h1> {volist name="list" id="vo"} <dt> <h3>{$vo.user_id} 姓名:{$vo.user_name}{if $vo.status==1}</h3> </dt> {/volist} <form action="/public/index.php/index/login/logout" method="post"> <p><input style="border: #008800" type="submit" value="注銷"></p> </form> </dl> </body> </html>
?? ? ???? ?????. ???? ???? ??
application/index/controller/Login.php
<?php public function members(){ $view = new View(); $list = User::all(function($query){ $query->order('user_id','asc'); }); //設(shè)置變量輸出 $view->assign('list',$list); return $view->fetch('members'); }
?members() ???? ?????. ?? ??? ??? ????.