我正在使用codeigniter。以下是表单验证集规则
unique[bf_product.product_order,bf_product.id]
bf_product =表名
product_order =列名
我想在product_category
中添加另一列,即:unique
名称到form validation
规则。
因此,可以在product_order
和product_category
的基础上获取产品,并且用户无法输入相同的订单号。对于特定类别。
示例:
(Not possible,already exist)
(Possible)
答案 0 :(得分:0)
不确定是否可以由unique
完成,根据文档,它仅检查单个列。建议你去callbacks
:
$this->form_validation->set_rules('ele', 'alias', 'callback_check_product');
function check_product( $ele ){
#check here with the $ele and return TRUE / FALSE
}