Jump to content

Problem with cookies


blira

Recommended Posts

Hi all.

 

Here is my problem:

 

Page: login.php

$cookie_data=$user."-".$pass."-".$role;

if(setcookie ("FLEISCHMANN_ADMIN",$cookie_data, $time+3600)==TRUE)

...

//Note $user, $pass, $role DO have data

 

Page: logged.php (once the login succeeds)

$cook = explode("-", $_COOKIE['FLEISCHMANN_ADMIN']);   

$namecookie = $cook[0];

$passcookie = $cook[1];

$rolecookie = $cook[2];

 

Notes:

1. All this code is written before HTML (in both pages).

2. When I open the cookie file, it DOES contain the data I'm trying to explode.

3. $cook is empty and no cookie data is read.

 

Thanks for any help

Bernardo

Link to comment
https://forums.phpfreaks.com/topic/75152-problem-with-cookies/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.