browse by tag: cookies
sort by
Welcome to Cookies
in PHP added by charliepage, on 18/2/2008 beginner tutorials cookies
Cookies are just a basic aspect of PHP, but can be used in so many things. From logging in and out a user on your website to keeping the name of the skin they use on your website. Below I will explain how to set (add) a cookie, delete one and then display/check one. I will first show the PHP code and then explain it.
comment save reportHow To: Cooking cookies in PHP
in PHP added by mig35, on 9/9/2007 beginner cookie cookies and sessions
Cookies are a fun and useful way to save data on a user's computer. The stored information can be used to identify them the next time they come to the site. In this tutorial, I attempt to show how to create cookies, retrieve cookie values and delete/destroy cookies.
comment save reportUsing Cookies in PHP
in PHP added by goodphptutorials, on 10/12/2006 cookies cookies and sessions
A cookie is a message given to a Web browser by a Web server. The browser stores the message in a small text file that the server embeds on the user's computer. Each time the same computer requests a page with a browser, the cookie is sent back to the server too. The main purpose of cookies is to identify users and possibly prepare customized Web pages for them. In this tutorial you'll learn about using Cookies in PHP.
comment save reportEasy to use function for sending cookies
in PHP added by goodphptutorials, on 10/11/2006 beginner tutorials cookies
Article contains handful PHP function ae_put_cookie for easy cookie setting and "Cookie Notepad" example which allow visitor to store text in his own browser cookie.
comment save reportManaging Users with PHP Sessions and MySQL
in PHP added by goodphptutorials, on 30/1/2006 cookies cookies and sessions database mysql sessions user
In this article, I shall provide an overview of the system I developed, beginning in the first half with the user signup process. In the second half, I'll focus on the site itself, how it requires users to log in and then maintains that logged-in status throughout their visit.
comment save reportPHP Cookies
in PHP added by goodphptutorials, on 19/12/2005 cookies cookies and sessions sessions user
A cookie is often used to identify a user. A cookie is a small file that the server embeds on the user's computer
comment save reportCookies a Quick Glance
in PHP added by goodphptutorials, on 2/12/2005 beginner tutorials cookies session user
Sometimes it becomes necessary to track certain user details
comment save report