![]() |
Call to undefined form_open() error - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived General Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=21) +--- Thread: Call to undefined form_open() error (/showthread.php?tid=29751) |
Call to undefined form_open() error - El Forum - 04-20-2010 [eluser]01010011[/eluser] Hi, I am getting this error message: Quote:Fatal error: Call to undefined function form_open() in C:\xampp\htdocs\myfile\system\application\views\signup_form.php on line 13 while using this code: Code: <!DOCTYPE html> Code: <?php Any ideas what could be causing this? Call to undefined form_open() error - El Forum - 04-20-2010 [eluser]Jelmer[/eluser] Only thing I can think of is that you're possibly using PHP4 that doesn't recognize __construct() as the autoloader and as such the helpers weren't loaded. Call to undefined form_open() error - El Forum - 04-20-2010 [eluser]01010011[/eluser] [quote author="Jelmer" date="1271787709"]Only thing I can think of is that you're possibly using PHP4 that doesn't recognize __construct() as the autoloader and as such the helpers weren't loaded.[/quote] Thanks for your reply Jelmer, it helped me figure out a solution around this problem. I'm using XAMPP version 1.7.3 which has PHP 5.3.1. It worked when I used "Classname()" instead of "_construct()". Why does it not work with _construct()? Anyway its working now. Thanks. |