I'm trying to figure out I how can do something like:

console.log('<?php print_r($_SESSION); ?>'); 

To see the results in the console.

console.log('<?php echo serialize($_SESSION); ?>');

does not work either. Is there a way for me to echo the session information in firebug or inspect element in chrome for testing purposes?

link|improve this question

2  
are you using this code between script tags? – ahmet2106 Dec 29 '11 at 22:26
1  
Not working does not qualify as a correct description about the error you face. You can not just throw anything out as javascript "string" and then expect it to work. Imagine there is a ' inside the serialized string, it would just make it stop working. – hakre Dec 29 '11 at 22:33
feedback

2 Answers

up vote 4 down vote accepted

You could try this :

<script>
    console.log(<?php echo json_encode($_SESSION); ?>);
</script>

No quotes are required. See as well Firebug and Logging.

link|improve this answer
feedback

It is not possible to view the session details using fire bug.

link|improve this answer
1  
Actually this answer is pretty correct by its nature and doesn't deserve to be downvoted, since it is really not possible to view the session data using only firebug - your serverside should prepare the data. And in this case the question makes no sense, because you can prepare anything: data from session, db, 3rd party service, etc – zerkms Dec 29 '11 at 22:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.