权限表autht有url、auth等字段,用户表member有uid、auths等字段
$uid = "用户uid"
$auth = "用语句查select auth from autht where url='当前页面url' 结果为abc"
$auths = "用语句查select auths from member where uid={$uid} 将结果explode为数组"
if(!in_array($auth, $auths)) redirect('提前写好的报错页面')
// 权限检测结束
$row=mysql_fetch_assoc($result)if($row['staff_right']){
…………
}else{
…………
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)