• Howdy! Welcome to our community of more than 130.000 members devoted to web hosting. This is a great place to get special offers from web hosts and post your own requests or ads. To start posting sign up here. Cheers! /Peo, FreeWebSpace.net
managed wordpress hosting

PHP: Get data from cookie

bozley05

NLC
NLC
Hi, when a user logs into my site it opens up this cookie:

PHP:
setcookie("data", "$username", time() + 993600, "", "domain.com");

I want that username to be recalled on a certain page so it gets customised data for that user.. Something like:

PHP:
include('"data/"$data".php"');

Although i know that format is totally wrong and I suck at PHP. But say if the username was "joe" i want it to load "data/joe.php"...

Thanks in advance :)
 
PHP:
setcookie("data", "$username", time() + 993600, "", "domain.com");

PHP:
include("data/".$HTTP_COOKIE_VARS['data'].".php");
 
Back
Top