![]() |
A Newbie question - 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: A Newbie question (/showthread.php?tid=10744) |
A Newbie question - El Forum - 08-11-2008 [eluser]CI Newbie Guru[/eluser] Hi, I have recently installed codeigniter but having few issues. I have searched the forum and have viewed video tutorial but cannot find what is wrong with my code/settings. 1) I have home.php controller in home folder under controllers (controllers->home->home.php). I have changed the default controller in routes.php to home/home but i get 404 error. If i copy the home.php controller directly under controllers folder and change it to 'home' in routes then it works fine. Can you please tell me what to do to make it use home/home controller. 2) In my home controller i get following error A PHP Error was encountered Severity: Notice Message: Undefined variable: data Filename: controllers/home.php Line Number: 13 This is the code from home.php Code: <?php It loads the header view fine and display the content of data['header'] on homepage view without any problems. Can any one please tell me where i am going wrong. Thanks A Newbie question - El Forum - 09-07-2008 [eluser]Tanque[/eluser] Code: $data ['header'] = $this->load->view('common/header', $data, TRUE); this is the error... you are passing $data before it's set... look ...'common/header', $data'... where is this variable set?... A Newbie question - El Forum - 09-07-2008 [eluser]Sumon[/eluser] here is a simplified version Code: $data = $some_query->result(); surely you not get any $data error. A Newbie question - El Forum - 09-07-2008 [eluser]Crafter[/eluser] Try Code: $data ['header'] = $this->load->view('common/header'); A Newbie question - El Forum - 09-07-2008 [eluser]Tanque[/eluser] lo q dice crafter es a lo q me referÃa... excelente, gran aporte... what crafter told us is what i mean... great stuff... |