标签:
我在写权限的查询的时候,用到了sql语句的链接写一下出错的时候的代码
$sqlpid="select auth_name from sw_auth where auth_level=0"; if(session(‘mg_id‘)!=5){ $sqlpid.="and auth_id in ($ids)"; } show($sqlpid);
出错的截图
根据图中的输出就能知道出错的原因了了,sql语句没写对
正确的代码
$sqlpid="select auth_name from sw_auth where auth_level=0"; if(session(‘mg_id‘)!=5){ $sqlpid.=" and auth_id in ($ids)"; } show($sqlpid);
标签:
原文地址:http://www.cnblogs.com/zhaoshunjie/p/4637155.html