Guest User

Untitled

a guest
Jul 21st, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. $this->load->helper('cookie');
  2. $cookie = array(
  3. 'name' => 'name',
  4. 'value' => 'The Value',
  5. 'expire' => '86500',
  6. 'domain' => '.livesbabies.com',
  7. 'path' => '/',
  8. 'prefix' => 'myprefix_',
  9. );
  10.  
  11. set_cookie($cookie);
  12.  
  13. $mycook = get_cookie('name');
  14. print_r($mycook);
Add Comment
Please, Sign In to add comment