Home » PHP » Tips and Tutorials » Cookies
Sponsors
Cookies
PHP Cookie example and function-helper
PHP has a function setcookie since version 3.0, but this function is too low-level for simple usage. Function ae_put_cookie provided, sets cookie for current domain without specifying long arguments lists. Just three arguments: 'name', 'value', session cookie flag/number of days/forever cookie flag
Price: free Rate:
0.0(out of 5) Vote:0
Using Cookies in PHP
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.
Price: free Rate:
0.0(out of 5) Vote:0
Session Saver
This package can be used to save and restore objects in session variables. It can register a list of one or more classes objects that are intended to be saved. The classes must implement the SessionObject interface. The class can call all the registered classes to save and restore the state of the session objects
Price: free Rate:
0.0(out of 5) Vote:0
Cookies In PHP
One of the most powerful tools available to the web developer are http cookies. This short article will help you understand cookies.
Price: free Rate:
0.0(out of 5) Vote:0
How to use Cookies wih PHP
Cookies are pieces of text that are sent to a user's web browser. Cookies can help you create shopping carts, user communities, and personalized sites. It's not recommended that you store sensitive data in a cookie, but you can store a unique identification string that will match a user with data held securely in a database.
Price: free Rate:
0.0(out of 5) Vote:0
Pages : 1

