1

我正在使用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");
        }

我很茫然,因为这是我需要的会议室系统应用程序的最后一点(减去一些非常小的细节。)

4

2 回答 2

3

我认为这很重要,但是有一种更好的方法可以让这个系统使用小部件并将它们转移到活动页面,请查看 p4a 链接了解详细信息:)

p4a阅读文档以获取帮助

于 2012-10-31T11:46:12.903 回答
1

忽略它,它不重要:)

于 2012-10-30T16:13:19.177 回答