我有以下表格:
<label>One</label>
Product ID:<input type="text" name="productid[]" value="">
Product Quantity: <input type="text" name="quantity[]" value=""> <br>
<label>Two</label>
Product ID:<input type="text" name="productid[]" value="">
Product Quantity: <input type="text" name="quantity[]" value=""> <br>
<label>Three</label>
Product ID:<input type="text" name="productid[]" value="">
Product Quantity: <input type="text" name="quantity[]" value=""> <br>
<!-- there may be more inputs like above (users can create new inputs
as many as they want) // I have a jquery function to create new rows-->
<input type="submit" value="submit">
name="productid[]"
现在我的问题是当我输入这样的名称而不是在我的表单中时,如何使用 Codeigniter 验证name="productid"
表单。
通常我用这种方式验证我的表单,但这次它不适用于上面的表单。
如何验证它?