<?php
//系统显示页
class IndexAction extends SessionAction {
//系统首页
public function index(){
$this->display();
}
//系统头部显示
public function top(){
$username = $_SESSION['username'];
$power = $_SESSION['power'];
$this->assign('username',$username);//向页面传递username值
$this->assign('power',$power);//向页面传递power值
$this->display();
}
//退出登陆
public function out(){
session_unset();
session_destroy();
$this->redirect('Login/index','','0');
}
}
?>
这是php源码
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<me
<ti
</head>
<fr
<fr
</fr
<body>
</body>
</html>
这是前台源码
求高手赐教
最佳答案
