![]() |
The form field dont appears - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23) +--- Thread: The form field dont appears (/showthread.php?tid=32726) |
The form field dont appears - El Forum - 08-02-2010 [eluser]bibos[/eluser] Hi, I'm new with CodeIgniter, i start by doing a login form, i have a login_form.php file : Code: <?=form_open('base_url').'main/login'?> and into my main.php controller i do : Code: ?php i alsow do in my autoload.php : Code: ... But when i brows to http://127.0.0.1/YASS/ the form fields dosnt apears but all text is ok (Title, login, password)! Can some one help please. THKS The form field dont appears - El Forum - 08-02-2010 [eluser]clip[/eluser] Do you have short tag support enabled? If your dead set on using short tags I would recomend changing the setting in your config/config.php file rewrite short tags to TRUE. http://ellislab.com/codeigniter/user-guide/general/alternative_php.html The form field dont appears - El Forum - 08-02-2010 [eluser]bibos[/eluser] OK it's WOrking i just modifie php.ini file : short_open_tag = Off THKS |