How to customize label on this codeigniter validation |
Try this:
PHP Code: if($this->request->getMethod() == 'post' && $this->validate([ And, if you want to add a custom message: PHP Code: if($this->request->getMethod() == 'post' && $this->validate([ That said, if you have more than 200 validation rules, you should probably store them in a variable in the Validation configuration file. https://codeigniter.com/user_guide/libra...ation.html |
Messages In This Thread |
How to customize label on this codeigniter validation - by phili - 04-10-2023, 10:45 PM
RE: How to customize label on this codeigniter validation - by digitalarts - 04-12-2023, 01:38 PM
RE: How to customize label on this codeigniter validation - by InsiteFX - 04-12-2023, 11:14 PM
|