![]() |
how to use form_validation validation post data - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5) +--- Forum: Libraries & Helpers (https://forum.codeigniter.com/forumdisplay.php?fid=11) +--- Thread: how to use form_validation validation post data (/showthread.php?tid=66637) |
how to use form_validation validation post data - qq8554650 - 11-15-2016 post data to CI url,the post function below. I sure url receive post data(log to file),but use form_validation validation args is invalid PHP Code: private function http_post_data($url, $data_string, $authorization = null) { RE: how to use form_validation validation post data - PaulD - 11-15-2016 It seems you are calling a function, with a url and some data, posting it somewhere and collecting the results, then returning the results. Where exactly is the form validation that is failing? |