| TOTAL: 7 Page: 1 of 1 |
|
PHP Cookies Tutorial
A cookie is a flat file that stores tiny bits of information. It is stored on the client’s machine and is passed to the client when they visit your site. Each cookie can store anything from usernames to number of visits to a site. This tutorial will teach you how to create, retrieve, display, and delete cookies using php.

| Hits: | 1 | Platforms: | Linux Windows |
| Ratings: | Last Updated: | 2008-10-10 |
Cookies 1.0
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.

| Hits: | 38 | Platforms: | Windows |
| Ratings: | Last Updated: | 2007-11-19 |
PHP sessions tutorial 1.0
In this tutorial I will show you how to work with sessions in PHP. You will learn how to transfer information between pages.

| Hits: | 20 | Platforms: | Linux Mac Sun Windows |
| Ratings: | Last Updated: | 2007-07-11 |
When and How to use Cookies and Sessions
Cookies and Sessions both fulfill the purpose of storing data across the pages of a website. Both have their own advantages.Cookies are stored on the client side and can be set to a long lifespan, which means that data stored in a cookie can be stored for months if not years. Cookies work fine with a web application installed on a cluster of web server, whereas sessions are stored on the server, means if one web server is handling the request, the other web server on the cluster will not have ac

| Hits: | 16 | Platforms: | Linux Mac Sun Windows |
| Ratings: | Last Updated: | 2007-06-01 |
PHP Script Tips - Understanding and Using Sessions
A collection of 19 tips on understanding and using sessions in PHP. Clear explanations and tutorial exercises are provided on starting and closing sessions, saving and retrieving values in sessions, deciding how session IDs to be transferred, deciding where to store session files, deciding when to expire session values, etc.

| Hits: | 18 | Platforms: | Windows |
| Ratings: | Last Updated: | 2007-04-08 |
Understanding and Managing Cookies - 23 Short Tutorials for Beginners
A collection of 23 tips on understanding and managing cookies in PHP. Clear explanations and tutorial exercises are provided on setting and receiving cookies, creating and removing persistent cookies, specifying domain and path to restrict cookies, finding cookies in cookie files, cookie limitations. Topics included in this collections: What Is a Cookie? How To Send a Cookie to the Browser? How To Receive a Cookie from the Browser? How To Test Cookies on a Web Server? What Is a Persistent

| Hits: | 57 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-07 |
PHP Tutorials - Sending, Receiving Cookies, and Persistent Cookies
Cookie: A small amount of information sent by a Web server to a Web browser, saved by the browser, and sent back to the server later. Cookies are transmitted inside the HTTP header. Sending and Receiving Cookies Cookies are supported in PHP in the following ways: 1. setcookie() - A built-in function that defines a cookie to be sent along with the rest of the HTTP headers. Like other headers, cookies must be sent before any output from your script (this is a protocol restriction). This re

| Hits: | 49 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-07 |
PHP & You Tutorial
First of all, you must define what you want to do with your script. Cookies, are used mostly for login systems, and are very similar to Sessions but are different in some way or another. A Session or Cookie is basically said to be a document on your (YOUR) computer with which you would store information. Cookies such as on this very forum. Somewhere on your computer there is a file that has information that was put and made by this forum. The forum recognizes this cookie, and tells you that

| Hits: | 150 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-07 |
Flood protection using cookies - Got a problem with a spammed form?
This is a tutorial on cookies. I could tell you a joke how cookies are good to use and eat, but I will save you the pain and let you read the tutorial... This script prevents users (most of them anyway) from flooding (posting excessive useless messages) your shout box, poll, comments area, forum etc. To do this, we have to use cookies, a valuable part of php and something you will use often in your future programming endeavours

| Hits: | 39 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-07 |
Using cookies to store information
PHP is a very powerful language on its own but when its is combined with the flexibility and power of MySQL databases it gets even better. MySQL databases work just like any other database: they store data and information in an organised format. This tutorial will show you how to establish a connection to that database or if it is not succesful, display an error message. Set connection details In order for us to connect to the database the server needs to know some information first. In the foll

| Hits: | 33 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-07 |
Cookies a Quick Glance
Sometimes it becomes necessary to track certain user details like (No. Of Visits, names, last visit, etc). The client machine stores such information and sends it to the web server whenever there is a request. Cookies data are sent along with the HTTP headers. You can look at this URL to know more about how they work. Difference between session and cookie? The key difference would be cookies are stored in your hard disk whereas a session aren't stored in your hard disk. Sessions are basic

| Hits: | 110 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-07 |
Cookies
Learn how to add and play around with cookies. Sponsors - Spoono Host Setting and playing around with cookies is a fun and useful way to save data on a user's hard drive, and can successfully store valuable information which may be helpful the next time they come to the site. Its fairly simple to set up, and even easier to read. To use it, you have to remember some guidelines: You have to put the cookie code as the first line of your file, it has to be before the head, before any other

| Hits: | 46 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-07 |