控制器中变量
public function register() {
$type = I("param.type");//1.学生注册 2.教师注册 3.其他注册
$this -> assign("type", $type);
//q全部部门
$depart1 = M("Depart") -> where("status=1 and fid=0") -> order("id asc") -> select();
$this -> assign("depart1", $depart1);
$this -> display();
}
模板中引用位置一:php代码中,直接用$i;
<php>
echo $i;
</php