以下代码的正确语法是什么,以获取数组中的复选框值
这是复选框数组:
@foreach($p->products as $pp)
<input type="checkbox" name="product[]" value="{{ $pp->name }}"> {{ $pp->name }}<br />
@endforeach
以下是我获得价值的方法
Input::get('product', 0) // this part how can i get the value from checkbox array if the user select more than one?
答案 0 :(得分:0)
你可以这样做:
$products = Input::get('product'); // Returns an array of values from the form
foreach ($products as $product)
{
echo $product;
}
或
return $product; // Get them as an json