CodeIgniter Forums
Re-populate session? - 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: Re-populate session? (/showthread.php?tid=2019)



Re-populate session? - El Forum - 07-11-2007

[eluser]Unknown[/eluser]
Hi,

I am using a flash uploader object to upload files in my CI app. Unfortunately, due to limitations in the flash object, the session information is not passed on to the upload script. Actually that happens only in FF, but anyways.

My question. I want to pass on the session id as GET variable to my CI upload script. I am reading out the GET vars with:

parse_str($_SERVER['QUERY_STRING'],$_GET);

But how do I actually re-populate the session to access my session vars?

Any takers?

Greg