Codeigniter - cookies do not work in internet explorer 8 -


this code works in browsers except internet explorer 8

 $this->input->set_cookie(array(                           'name'   => 'test_cookie',                           'value'  => 'hello cookie',                           'expire' => 360000000,                           'secure' => false                           ));          echo get_cookie('test_cookie'); 

how solve problem? why not set_cookie?

try:

echo $this->input->cookie('test_cookie'); 

Comments

Popular posts from this blog

Why does Ruby on Rails generate add a blank line to the end of a file? -

keyboard - Smiles and long press feature in Android -

node.js - Bad Request - node js ajax post -