Articles: 843 | Categories: 148   
   
   
 
 
 
 
 
Php >> Articles & Tutorials >> Cookies & Sessions
PHP Cookies By: Admin

Cookies have been around for quite some time on the internet. They were invented to allow webmaster's to store information about the user...25-Mar-2010

PHP Sessions By: Admin

As a website becomes more sophisticated, so must the code that backs it. When you get to a stage where your website need to pass along us...25-Mar-2010

Using Cookies in PHP By: Admin

Cookies are small bits of information that can be stored on a client computer. Once a cookie is created, it will expire after a specified...25-Mar-2010

Managing Users with Sessions By: Admin

Recently, I had occasion to work on a small project with a group of people. We had determined early on that email alone wasn't going to b...25-Mar-2010

PHP Tutorial: Cookies By: Admin

Cookies are pieces of data that are stored as simple little text files in the site visitor's computer, and allow the site server to keep ...25-Mar-2010

Sessions By: Admin

This tutorial will teach an alternative and effective solution to cookies in PHP which might actually be better for your website and secu...25-Mar-2010

Cookies By: Admin

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 ...25-Mar-2010

Sessions By: Admin

This chapter describes: What is a session. How use session in a PHP script. A session test with 3 scripts. How session ID can be managed ...25-Mar-2010

Using Cookies By: Admin

This chapter describes: What is a Cookie? Sending and Receiving Cookies, Output Control Functions, Persistent Cookies, and Other Cookie P...25-Mar-2010

Using Cookies in PHP By: Admin

If you're using PHP (and perhaps MySQL with it) to make as much of your site dynamic as possible, you won't be able to make a site truly ...25-Mar-2010

Custom PHP Sessions By: Admin

PHP's session handling functions are OK, but what if you wanted to create your own sessions? In this article I will teach you how to crea...25-Mar-2010

User ID with cookies By: Admin

This article will explain the basics and possibilities of user identification using cookies. First of all the mechanics of cookies must b...25-Mar-2010

Developing State-enabled Apps By: Admin

When a user is browsing through a website and is surfing from one web page to another, sometimes the website needs to remember the action...19-Apr-2010

Saving PHP Session to a DB By: Admin

As you should be aware the HTTP protocol, as used for serving web pages, is completely stateless. This means that after the server has re...19-Apr-2010

Handling Cant Modify Headers By: Admin

What all of these errors are trying to tell you is that some form of data is being sent to the browser before you made a call to that fun...19-Apr-2010

PHP and Cookies By: Admin

In this article we will discuss about cookies and how to make cookies work with PHP. This tutorial will guide you through not only creati...25-Mar-2010

PHP Sessions By: Admin

In this article we will discuss what are Sessions and how to work with sessions in PHP. This tutorial will guide you through setting up a...19-Apr-2010

PHP Sessions Tutorial By: Admin

This tutorial shows you how to work with sessions in PHP. You will learn how to transfer information between pages to create interactive ...25-Mar-2010

Read from a Cookie By: Admin

This sample code shows how easy it is to read data from a user's cookie. More information about cookies can be found on the site. ...25-Mar-2010

Save Info to a Cookie With Variable By: Admin

This snippet shows how to save information to a cookie using a variable. More informatiom about cookies can be found on the site. ...25-Mar-2010

Save Information to a Cookie By: Admin

This snippet shows how you can easily save information to a cookie. More informatiom about cookies can be found on the site.

...25-Mar-2010
Save Info to a Cookie With Variable By: Admin

This snippet shows how to save information to a cookie using a variable. More informatiom about cookies can be found on the site. ...25-Mar-2010

PHP and Cookies By: Admin

Cookies are small amounts of data stored by the user’s browser after a request from a server or script. While they are excellent fr...19-Apr-2010

Using Cookies with PHP By: Admin

Cookies allow the webmaster to store information about the site visitor on their computer to be accessed again the next time they visit. ...25-Mar-2010

Session Management With Cookie By: Admin

A fundamental characteristic of the Web is the stateless interaction between browsers and web servers. As discussed in Chapter 1, HTTP is...25-Mar-2010

Setting Cookies with PHP By: Admin

Using cookies, you can automatically log users into your Web site when they load a page, or you can store temporary information such as i...25-Mar-2010

Session Management Over the Web By: Admin

A fundamental characteristic of the Web is the stateless interaction between browsers and web servers. As discussed in Chapter 1, HTTP is...25-Mar-2010

PHP and Cookies By: Admin

A cookie can hold small collection of information/data, that is stored on the users local computer and is mostly used by websites to iden...25-Mar-2010

How to use cookies By: Admin

Setcookie() defines a cookie that is sent along with the rest of the information from the header. Cookies shall be sent before any html t...25-Mar-2010

Example of uses for cookies By: Admin

n this example we will learn how to set a cookie and how to retrieve the established value. In order to do this, we will ask users to ins...25-Mar-2010

PHP Cookies By: Admin

This reference shows an example on storing cookies in the client's browser, and controlling the expire time on the server instead of the ...25-Mar-2010

A Session In The Cookie Jar By: Admin

One of the standard examples used to demonstrate how a session works is the hit counter application. This is a simple counter that initia...25-Mar-2010

Basic PHP Sessions By: Admin

A session is a way to store information (in the form of variables) to be used across multiple pages. Unlike a cookie, specific variable i...26-Mar-2010

Introduction to PHP Sessions By: Admin

This article is an step-by-step introduction to using sessions in PHP. It features fundamentals tips and actual examples to show you what...26-Mar-2010

Storing Sessions in a Database By: Admin

While the default session storage mechanism is adequate for many PHP developers, you might find yourself wanting to modify its behavior f...26-Mar-2010

Using Sessions By: Admin

It is said that HTTP (Hyper Tex Transffer Protocol )tis stateless protocol , which means, information entered by user in one HTML page is...26-Mar-2010

PHP Sessions By: Admin

A PHP session variable is used to store information about, or change settings for a user session. Session variables hold information abou...26-Mar-2010

setcookie By: Admin

etcookie() defines a cookie to be sent along with the rest of the HTTP headers. Like other headers, cookies must be sent before any outpu...26-Mar-2010

Sessions By: Admin

This tutorial is designed for an advanced PHP programmer. It assumes you know how to handle cookies. You ...26-Mar-2010

Sessions for authorization By: Admin

Sections are used for sharing variables between different web pages accessed by the same user. Of course, somehow server has to know that...26-Mar-2010

PHP Tutorial: Session By: Admin

The first time a user accesses to a our pages some connections and disconnections took place. During this process the server and the clie...26-Mar-2010

Cookies By: Admin

PHP transparently supports HTTP cookies. Cookies are a mechanism for storing data in the remote browser and thus tracking or identifying ...26-Mar-2010

Session Management By: Admin

This three-page online tutorial/article talks about managing user session and authentication using PHPLIB, a set of PHP classes designed ...26-Mar-2010

Session Management with PHP4 By: Admin

One of the new great features with PHP4 is the session management feature. It allows you to store variables in a session 'object' during ...26-Mar-2010

Sessions and cookies By: Admin

HTTP is a stateless protocol. This means that each request is handled independently of all the other requests and it means that a server ...26-Mar-2010

The Truth about Sessions By: Admin

Nearly every PHP application uses sessions. This article takes a detailed look at implementing a secure session management mechanism with...26-Mar-2010

Welcome to Cookies By: Admin

Welcome to the first tutorial here at Insane Visions. I'm going to kick it off with a tutorial on cookies, PHP cookies. Cookies are just ...26-Mar-2010

Cooking Cookies with PHP By: Admin

Cookie is a small flat file which sits on user’s computer. Each time that user requests a page or goes to a webpage, all cookie inf...26-Mar-2010

Protecting a Page with Sessions By: Admin

First of all, create a basic form that goes to login.php. Then, on the login.php page we need to first open PHP tags, and start by adding...28-Mar-2010

PHP cookie example By: Admin

This article contains handful PHP function ae_put_cookie for easy cookie setting and "Cookie Notepad" example which allow visit...28-Mar-2010

PHP Web Services By: Admin

REST, unlike SOAP, doesn't require you to install a separate tool kit to send and receive data. Instead, the idea is that everything you ...28-Mar-2010

XSS, Cookies, and Session ID By: Admin

Cross site scripting (XSS) errors are generally considered nothing more than a nuisance — most people do not realize the inherent d...28-Mar-2010

Server Sessions By: Admin

The session handling functions in PHP are designed to save state between different requests from the same client. This works well if the ...28-Mar-2010

Using Sessions By: Admin

To begin this tutorial in PHP sessions, you must first make sure that your web server (ie. apache) has the options to allow session with ...28-Mar-2010

PHP and Cookies, A Good Mix By: Admin

Cookies have long been used in PHP scripts, and are a very useful function. Maybe you have used then, but you still don't know exactly wh...28-Mar-2010

Using Cookies in PHP By: Admin

Cookies is small text files saved locally on the user's computer by the website, when the website later on wants the information it just ...28-Mar-2010

Saving PHP Session Data By: Admin

As you should be aware the HTTP protocol, as used for serving web pages, is completely stateless. This means that after the server has re...28-Mar-2010

Cookies and You By: Admin

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...28-Mar-2010

Sessions & Cookies By: Admin

Sessions and cookies. Iin the web development world they are very important functions of interactive design! The difference between sessi...29-Mar-2010