2017-06-22 35 views

回答

0

試試這個代碼:

創建一個函數:

希望它會工作:

function check_bigger($amount,$amount_left) 
{ 
    if ($amount >= $amount_left) 
    { 
     $this->form_validation->set_message('check_bigger', 'The First &/or Second fields have errors.'); 
     return false;  
    } 
    else 
    { 
     return true; 
    } 
    } 

$v$this->input->post('amount_left'); 
$config=array(
    array(
     'field' => 'amount', 
     'label' => 'actual amount', 
     'rules' => 'trim|required|callback_check_bigger['.$v.']', 

    ), 
    array(
     'field' => 'amount_left', 
     'label' => 'amount left', 
     'rules' => 'trim|required' 
    ) 
相關問題