我正在使用P4A应用程序框架,我已经制作了一个下拉选择框,允许用户选择所选时的位置(按下继续按钮)将用户带到新页面(取决于选择)。我被困的地方是在数据库中进行查询以获取位置的 ID 以将用户引导到正确的页面,这是我得到的代码:-
$this->build("p4a_db_source", "login")
->setTable("meetingrooms")
->load()
->firstRow();
$this->build('p4a_field','location')
->setSource($this->login)
->setLabel('location')
->setType('select')
->setSourceValueField("ID")
->setSourceDescriptionField("MeetingRoom")
->setWidth(120);
$this->build("p4a_fieldset","Book")
->anchor($this->location)
//->anchor($this->booking)
->anchor($this->continue)
->setLabel('Meeting room bookings');
$this->display("main",$this->Book);
}
public function change()
{
$location = $this->MeetingRoom->getNewValue();
$sql = "SELECT * FROM meetingrooms
WHERE
MeetingRoom = ?";
$row = p4a_db::singleton()->fetchRow($sql, array($location));
if ($row['MeetingRoom'] == "AreaOne")
{
p4a::singleton()->openmask("Area_One");
}
else
{
$this->setTitle("Process Failed");
{
elseif ($location=="AreaTwo")
{
p4a::singleton()->openmask("AreaTwo");
}
elseif ($location=="AreaThree")
{
p4a::singleton()->openmask("AreaThree");
}
我很茫然,因为这是我需要的会议室系统应用程序的最后一点(减去一些非常小的细节。)