Codeigniter form validation in config depends on another input |
I'm using Codeigniter form validation by config (not setting rules manually). What I need, is setting required rule depending on the other field. For example, Imagine we have the following rules:
Code: 'user' => array( foo input must be required based on email field. Note: It can be done with callback or anonymous function, but it makes it a bit difficult in big applications. Any idea?
05-11-2017, 12:24 PM
(This post was last modified: 05-11-2017, 12:24 PM by Martin7483. Edit Reason: typo :P )
Extend Form_validation with your own MY_Form_validation
You can then place your own rule methods in this file and set the rule as you would set any other rule. |
Welcome Guest, Not a member yet? Register Sign In |