123456789 |
- <?php
- global $_GPC, $_W;
- $GLOBALS['frames'] = $this->getMainMenu();
- $sql="select a.* ,b.name,c.title,c.content as zxcontent from " . tablename("zhtc_zx_assess") ." a" . " left join " . tablename("zhtc_user") . "b on b.id=a.user_id" . " left join " . tablename("zhtc_zx") . " c on c.id=a.zx_id where a.uniacid=:uniacid and a.id=:id";
- $list=pdo_fetch($sql, array(':uniacid'=>$_W['uniacid'],':id'=>$_GPC['id']));
- include $this->template('web/pingluninfo');
-
|