Validate input arrays - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: CodeIgniter 4 (https://forum.codeigniter.com/forumdisplay.php?fid=28) +--- Forum: CodeIgniter 4 Support (https://forum.codeigniter.com/forumdisplay.php?fid=30) +--- Thread: Validate input arrays (/showthread.php?tid=77938) |
Validate input arrays - ganeendra - 11-06-2020 Hi, Can i know how to validate input arrays in Codeingiter 4? PHP Code: <?= form_dropdown(array('name' => 'upload_purpose[]', 'class' => 'form-control upload_purpose', 'options' => $cc_fileds)); ?> PHP Code: $rules = [ I tried above an it doesn't work. it always displays the error message even though parameters were passed RE: Validate input arrays - InsiteFX - 11-07-2020 SEE: CodeIgniter 4 User Guide - Validating Keys that are Arrays |