I have a site which does a few ajax calls on page load. For some reason, CodeIgnitor is inserting 4 sessions (I’m assuming one for each ajax call) as you load the page. I’m storing the sessions in the database. I’m pretty sure there should only be one session per browser. Firefox seems to generate only one; other browsers seem
Tag: codeigniter
CodeIgniter get_where
I’m attempting to use get_where to grab a list of all database records where the owner is equal to the logged in user. This is my function in my controller; function files() { $owner = $this->…
Sending email with gmail smtp with codeigniter email library
load->library(’email’); } function index() { $config[‘…