![]() |
Parse error with - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Libraries & Helpers (https://forum.codeigniter.com/forumdisplay.php?fid=22) +--- Thread: Parse error with (/showthread.php?tid=41198) |
Parse error with - El Forum - 05-01-2011 [eluser]matches[/eluser] Hello, I am getting the following error: Quote:Parse error: syntax error, unexpected T_OBJECT_OPERATOR in Z:\xampp\htdocs\SFBAOH\application\controllers\agent_login.php on line 52 This is line 52: Code: if(this->form_validation->run() == FALSE) I am fallowing along with the tutorial here: http://a44.video2.blip.tv/5870002834299/NETTUTS-CodeIgniterFromScratchDay6219.mp4?bri=24.4&brs=590 Basically, I am just trying validate a registration form. Thanks for any info. Code: function create_member() Parse error with - El Forum - 05-01-2011 [eluser]toopay[/eluser] You missing '$' Code: if($this->form_validation->run() == FALSE) Parse error with - El Forum - 05-01-2011 [eluser]InsiteFX[/eluser] Gotta love debugging your application LOL! Parse error with - El Forum - 05-01-2011 [eluser]matches[/eluser] GAH! OMG! so stupid! thanks! |