Okay so i need to create a cookie that recalls information from a database based off of the input of another column of the same row that the information i want to recall.
Database example
ID -Username -Pass -Fullname
1 -Devin -abc1234 -Devin Bunge
[Php]
$cookie_info= "the full name of username";
setcookie[Name_of_cookie, $cookie_info, $hour);
[/code]
The input would be DEVIN as $_POST['username']
I want the output to be in the cookie to be Devin Bunge for later use in other pages.
I really do hate to ask for but my lack of experience and proper resources, if someone could link me some good guides that would be much appreciated.