|
Explains how to set and check
A session is the time that a
A quick introduction to PHP
Learn how to log users out of
for cookies using PHP. Also
user spends at your Web
sessions and the use of the
a system after x amount of
demonstrates a simple way to
site. Users may view many
most basic session handling
minutes of inactivity. This
read and write data to a
Web pages between the time
functions.
is a great security add-on!
file.
they enter your site and
leave it. Often you want
information to be available
for a complete session.
Beginning with version 4.0,
PHP provides a way to do
this.
PHP allows you to
set up a session and store
session variables. After you
create a session, the
session variables are
available for your use on
any other Web page.
Date: Jan, 05 2000 Date: Nov, 09 2006 Date: Jan, 04 2006 Date: Jul, 14 2003 |
|
Learn how to build user-aware
According to the cookie
This tutorial will teach an
Setting and playing around
PHP scripts that can
specification, any cookie
alternative and effective
with cookies is a fun and
remember your user's
set for one domain, must not
solution to cookies in PHP
useful way to save data on a
personal settings on your
be sent to any other domain.
which might actually be
user's hard drive, and can
website. Also a good
Therefore, if you set a
better for your website and
successfully store valuable
introduction to cookies.
cookie in your user's
security.
information which may be
browser on one domain, that
helpful the next time they
cookie will not be available
come to the site. Its fairly
on any other domain. This
simple to set up, and even
tutorial describes a
easier to read.
solution to get around this
issue.
Date: Jul, 29 2002 Date: Nov, 30 2000 Date: Mar, 04 2004 Date: Mar, 04 2004 |