CodeIgniter Forums
how to create admin panel in codeigniter - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived General Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=21)
+--- Thread: how to create admin panel in codeigniter (/showthread.php?tid=30145)



how to create admin panel in codeigniter - El Forum - 05-04-2010

[eluser]Unknown[/eluser]
Hi all codeigniterians

I am new in codeigniter , i am trying to make admin panel in codeigniter but i could not get it. i have tried to follow this way create admin panel in codeigniter . i use 2nd way to create admin directories in controller and views but did not access the admin pages.

i had tried with change in routing config/routes.php

$route['^admin/([a-zA-Z_-]+)/(:any)'] = "admin/$1";

please help me how to create it


how to create admin panel in codeigniter - El Forum - 05-04-2010

[eluser]danmontgomery[/eluser]
You don't need routes if you use the 2nd method... You just point your browser to www.mydomain.tld/admin/{controller}/{method}/{parameter}


how to create admin panel in codeigniter - El Forum - 05-04-2010

[eluser]Unknown[/eluser]
thanks , its helping me