Call to undefined function form_open() |
In BaseController.php i am autoloading [b]form helper[/b].
Code: protected $helpers = ["form"]; [b]Route:[/b] Code: $routes->get('admin/login', 'admin\LoginController::index'); [b]Controller:[/b] Code: public function index() [b]View:[/b] Code: <?php echo form_open('admin/dologin');?> [b]How can i get rid of from this error?[/b] Code: Call to undefined function form_open() |
Messages In This Thread |
Call to undefined function form_open() - by hamzazafeer - 07-23-2022, 04:25 AM
|