![]() |
adding new BO classes - 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: adding new BO classes (/showthread.php?tid=32497) |
adding new BO classes - El Forum - 07-25-2010 [eluser]Unknown[/eluser] Hello All, I'm new to codeigniter... Great framework : ) I created a new object and placed it in a new folder called /application/BusinessObjects/Tutor/SkillBO.php and I tried to reference it from my controller located at the folder /application/controllers/Tutor/CreateSkill.php using the following code Code: <?php I get the following error Message: require_once(../../BusinessObjects/Tutor/SkillBO.php): failed to open stream: No such file or directory Note: I'm not using the model objects directly because I want to use serialize the SkillBO object and store it in the session. The model object has too many additional fields Thank you for your helop A adding new BO classes - El Forum - 07-25-2010 [eluser]Unknown[/eluser] figured it out... I had the class named SkillOB instead of SkillBO : ) dumb |