CodeIgniter Forums
mainpage() problem - 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: mainpage() problem (/showthread.php?tid=48861)



mainpage() problem - El Forum - 01-31-2012

[eluser]london77[/eluser]
I am quite new in CI and wanted to make some practices from book. But somehow my code giving me an error.

Fatal error: Call to undefined method Start::mainpage() in C:\wamp\www\packt\application\controllers\start.php on line 18

I have tried to find the mainpage() method but got no info about it in google.

here is the part of code mentions the mainpage()

Code:
if($this->_checkme($username, $password)==TRUE)
{

$this->mainpage();
}

all helps and interests are appreciated.

Thanks in advance.


mainpage() problem - El Forum - 01-31-2012

[eluser]InsiteFX[/eluser]
And what book is this?



mainpage() problem - El Forum - 01-31-2012

[eluser]london77[/eluser]
packt publishing CodeIgniter 1.7


mainpage() problem - El Forum - 01-31-2012

[eluser]meigwilym[/eluser]
It appears that you don't have a
Code:
mainpage()
method in your Start controller.