![]() |
redirect()->back()->withInput() returns blank page - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5) +--- Forum: General Help (https://forum.codeigniter.com/forumdisplay.php?fid=24) +--- Thread: redirect()->back()->withInput() returns blank page (/showthread.php?tid=84909) |
redirect()->back()->withInput() returns blank page - ejuniorls - 11-22-2022 I have an auth (login) controller. When I login, if the login validation succeeds, you are redirected to the home page, otherwise an error is shown and you stay on the login page with a flash message. (that's supossed to happen). The login screen was displayed just fine but after logging (failed), I just go a blank page. Here’s how my login controller: PHP Code: public function auth(string $callbox, string $user, string $password) How can I solve this? |