how can I show cookies?
i want see cookies in codeigniter.
session i see :
print_r($this->session->all_userdata());
But cookies ?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I took a look at
system/core/Input.php:As far as I can see, you cannot show all cookies with
$this->input->cookie(). Only one at a time.If you really want to see all the cookies, just try
var_dump($_COOKIE).Or if you need show one cookie only, specify
your_key:$this->input->cookie('your_key')Hope this helps =)