![]() |
Get partial validated data - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: CodeIgniter 4 (https://forum.codeigniter.com/forumdisplay.php?fid=28) +--- Forum: CodeIgniter 4 Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=31) +--- Thread: Get partial validated data (/showthread.php?tid=91710) |
Get partial validated data - warcooft - 09-22-2024 Hi, I have a question. How can I retrieve partially validated data from a validation process? I would like to perform parallel processing: saving some data while displaying error messages for the parts that failed validation. I have the following code but didn't work, Any help would be greatly appreciated. PHP Code: if (!$this->validate($rules)) { RE: Get partial validated data - kenjis - 09-23-2024 There is no method. |