AlexBrand
AlexBrand

Reputation: 12399

Accessing cakephp session variable from a php script?

How can you access the cakephp session variable from a php script?

I tried $_SESSION but it returns empty. I specifically want to get to the Auth session information.

Thanks

Upvotes: 3

Views: 1684

Answers (1)

minaz
minaz

Reputation: 5780

try this...

session_name('CAKEPHP');
session_start();
print_r($_SESSION);

Upvotes: 10

Related Questions