如何在Laravel中从视图到控制器访问多个列表框

时间:2015-07-07 13:17:53

标签: php laravel-4

我正在开发一个网站,我想将我的订单分配给送货员,所以我使用下面给出的多个列表框和代码。

enter image description here

此屏幕的代码如下所示。

public function postOrders() 
{
    $CurrentOrdersCount = FoodyComments::where('comment_date', '<=', new DateTime('today'))->get()->count();

    $x=1;
    while($x!=$CurrentOrdersCount+1) {
        $mylist = $_POST[$x];
        echo $mylist;
    }
}

这里我给出动态名称,以便为每个列表框命名。

以下是我的控制器代码,用于访问此列表框。

<web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">

但它不起作用。这里有什么问题?

0 个答案:

没有答案