CodeIgniter Forums
use Session data in config file - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5)
+--- Forum: General Help (https://forum.codeigniter.com/forumdisplay.php?fid=24)
+--- Thread: use Session data in config file (/showthread.php?tid=68815)



use Session data in config file - JediMind - 08-29-2017

How can I use Session data in config file?

My config/database.php has a dynamic 'database' name value set by Session.

How can I access Session data BEFORE Codeigniter has completed its load or simply outside CodeIgniter.

Seems like Session library is calling the session_start() so I can't access Session data without CI.


RE: use Session data in config file - Narf - 08-29-2017

You can't, and most imporantly - you shouldn't ever do that.


RE: use Session data in config file - InsiteFX - 08-30-2017

SEE: Hooks in the CodeIgniter Users Guide.