Hi, when a user logs into my site it opens up this cookie:
I want that username to be recalled on a certain page so it gets customised data for that user.. Something like:
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");
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