可能重复:
How to populate select box with the session values in CakePHP
我写了一段代码,在选择框中显示学生的姓名作为选项。现在我需要填写表格中的文本框,如名字,姓氏和电话号码,以及学生在名单中被选中。请帮我这样做
$max_students = $this->Session->read('student_count');
$student_name = array();
for($i=0;$i<$max_students;$i++)
{
$student_first_name = $this->Session->read('Student.'.$i.'.FirstName');
$student_last_name =$this->Session->read('Student.'.$i.'.LastName');
$student_name[] = ($student_first_name." ".$student_last_name);
}
echo $this->Form->select('students',$student_name,array('onchange'=>$this->Form->submit(),null,false));
请解释语法。我是cakephp和ajax的新手。