thinkphp Q&A システムのバックエンドのリスト表示
には次のものが必要です:
管理センター
15) 管理者のみが入力できます
16) ユーザーの発言を禁止できます
17) 質問/回答
現在のコードは次のとおりです:
function index(){<br /> $goods= D('question');<br /> $count = $goods->count();<br /> $Page = new \Think\Page($count,6);<br /><br /> $list = $goods->table('ask.question question, ask.answer answer,ask.user user')->where('question.id = answer.tqu and question.userid= user.id')->field('question.id as quid,question.text as qutext,question.addtext as quadd, question.userid as quuserid,answer.text as antext,answer.addtext as answeradd, answer.userid as anuserid,answer.up,answer.down,user.name')->order(' question.id asc' )->limit($Page->firstRow.','.$Page->listRows)->select();<br /><br /><br /> $show = $Page->show();<br /><br /> $this->assign('list',$list);<br /> var_dump($list);<br /> $this->assign('page',$show);<br /> $this->display();