Fatal error: Call to undefined function form_open() in codeigniter with loading the following view file

By | May 23, 2014

while running the above view page using controller function it throws the below error
Fatal error: Call to undefined function form_open()…..

Usualy this error will throw becuse of missing the including the helper file.

Please edit the autoload.php in the config folder with below lines

$autoload[‘helper’] = array(‘url’,’form’);–add ‘form’ in this array if not exists.

Click to see the Demo

Click here to see the detailed code and demo