Developing State-enabled Applications With PHP


...
... ...
... With PHPWhen a user is browsing through a website and is surfing from one web page to another, ...
the website needs to remember the actions ( Installment 1Developing State-enabled Applications With PHPWhen a user is browsing through a website and is surfing from one web page to another, sometimes the website needs to remember the actions (e.g. choices) performed by the user.
For example, in a website that sells DVDs, the user typically browses through a list of DVDs and selects individual DVDs for check out at the end of the shopping session. The website needs to remember which DVDs the user has selected because the selected items needs to be presented again to the user when the user checks out.
In other words, the website needs to remember the State - i.e. the selected items - of the user's browsing activities.However, HTTP is a Stateless protocol and is ill-equipped to handle States.
A standard HTML website basically provides information to the user and a series of links that simply directs the user to other related web pages. This Stateless nature of HTTP allows the website to be replicated across many servers for load balancing purposes.
A major drawback is that while browsing from one page to another, the website does not remember the State of the browsing session. This make interactivity almost impossible.In order to increase interactivity, the developer can use the session handling features of PHP to augment the features of HTTP in order to remember the State of the browsing session.
The are basically 2 ways PHP does this:1. Using cookies2.
Using SessionsThe next installment discusses how to manage sessions using cookies...Installment 2CookiesCookies are used to store State-information in the browser. Browsers are allowed to keep up to 20 cookies for each domain and the values stored in the cookie cannot exceed 4 KB.
If more than 20 cookies are created by the website, only the latest 20 are stored. Cookies are only suitable in instances that do not require complex session communications and are not favoured by some developers because of privacy issues.
Furthermore, some users disable support for cookies at their browsers.The following is a typical server-browser sequence of events that occur when a cookie is used:1. The server knows that it needs to remember the State of browsing session2.
The server creates a cookie and uses the Set-Cookie header field in the HTTP response to pass the cookie to the browser3. The browser reads the cookie field in the HTTP response and stores the cookie4.
This cookie information is passed along future browser-server communications and can be used in the PHP scripts as a variablePHP provides a function called setcookie() to allow easy creation of cookies. The syntax for setcookie is:int setcookie(string name, [string val], [int expiration_date], [string path], string domain, [int secure])The parameters are:1.
name - this is a mandatory parameter and is used subsequently to identify the cookie2. value - the value of the cookie - e.g.
if the cookie is used to store the name of the user, the value parameter will store the actual name - e.g. John3.
expiration_date - the lifetime of the cookie. After this date, the cookie expires and is unusable4.
path - the path refers to the URL from which the cookie is valid and allowed5. domain - the domain the created the cookie and is allowed to read the contents of the cookie6.
secure - specifies if the cookie can be sent only through a secure connection - e.g. SSL enable sessionsThe following is an example that displays to the user how many times a specific web page has been displayed to the user.
Copy the code below (both the php and the html) into a file with the .php extension and test it out.[?php//check if the $count variable has been associated with the count cookieif (!isset($count)) { $count = 0;} else { $count++;}setcookie("count", $count, time()+600, "/", "", 0);?][html] [head] [title]Session Handling Using Cookies[/title] [/head] [body] This page has been displayed: [?=$count ?] times. [/body][/html]The next installment discusses how to manage sessions using PHP session handling functions with cookies enabled...Installment 3PHP Session Handling - Cookies EnabledInstead of storing session information at the browser through the use of cookies, the information can instead be stored at the server in session files.
One session file is created and maintained for each user session. For example, if there are three concurrent users browsing the website, three session files will be created and maintained - one for each user.
The session files are deleted if the session is explicitly closed by the PHP script or by a daemon garbage collection process provided by PHP. Good programming practice would call for sessions to be closed explicitly in the script.The following is a typical server-browser sequence of events that occur when a PHP session handling is used:1.
The server knows that it needs to remember the State of browsing session2. PHP generates a sssion ID and creates a session file to store future information as required by subsequent pages3.
A cookie is generated wih the session ID at the browser4. This cookie that stores the session ID is transparently and automatically sent to the server for all subsequent requests to the serverThe following PHP session-handling example accomplishes the same outcome as the previous cookie example.
Copy the code below (both the php and the html) into a file with the .php extension and test it out.[?php//starts a sessionsession_start();//informs PHP that count information needs to be remembered in the session fileif (!session_is_registered("count")) { session_register("count"); $count = 0;}else { $count++;}$session_id = session_id();?][html] [head] [title]PHP Session Handling - Cookie-Enabled[/title] [/head] [body] The current session id is: [?=$session_id ?] This page has been displayed: [?=$count ?] times. [/body][/html]A summary of the functions that PHP provides for session handling are:1.
boolean start_session() - initializes a session2. string session_id([string id]) - either returns the current session id or specify the session id to be used when the session is created3.
boolean session_register(mixed name [, mixed ...]) - registers variables to be stored in the session file. Each parameter passed in the function is a separate variable4.
boolean session_is_registered(string variable_name) - checks if a variable has been previously registered to be stored in the session file5. session_unregister(string varriable_name) - unregisters a variable from the session file.
Unregistered variables are no longer valid for reference in the session.6. session_unset() - unsets all session variables.
It is important to note that all the variables remain registered.7. boolean session_destroy() - destroys the session.
This is opposite of the start_session function.The next installment discusses how to manage sessions using PHP session handling functions when cookies are disabled...Installment 4PHP Session Handling - Without CookiesIf cookies are disabled at the browser, the above example cannot work. This is because although the session file that stores all the variables is kept at the server, a cookie is still needed at the browser to store the session ID that is used to identify the session and its associated session file.
The most common way around this would be to explicitly pass the session ID back to the server from the browser as a query parameter in the URL.For example, the PHP script generates requests subsequent to the start_session call in the following format:http://www.yourhost.com/yourphpfile.php?PHPSESSID=[actual session ID]The following are excerpts that illustrate the discussion:Manually building the URL:$url = "http://www.yoursite.com/yourphppage.php?PHPSESSID=" . session_id();[a href="[?=$url ?]"]Anchor Text[/a]Building the URL using SID:[a href="http://www.yoursite.com/yourphppage.php?[?=SID ?]"]Anchor Text[/a] Article Tags: Next Installment Discusses, Manage Sessions Using, State-enabled Applications, Website Needs, Session Handling, Next Installment, Installment Discusses, Manage Sessions, Sessions Using, Session Files, Session File Source: Free Articles from ArticlesFactory.com .

Top blog stories

A review of Idmobile.com

Idmobile.com offers both pay-as-you-go and contract plans. Pay-as-you-go plans are ideal for customers who don't want to be tied down to a long-term contract, and they can purchase bundles of data, minutes, and texts as and when they need them.

see post

A review of Idmobile.com

Idmobile.com offers both pay-as-you-go and contract plans. Pay-as-you-go plans are ideal for customers who don't want to be tied down to a long-term contract, and they can purchase bundles of data, minutes, and texts as and when they need them.

see post

AO.co: Online Shopping Made Simple

AO.co is a trusted expert in TVs, washing machines, clothes dryers and other household appliances. AO.com is one of the largest retailers in the UK and it specializes in electronics, clothes and home furniture.

see post

For our people.

At Three, we believe phones are good. They just make life better. Easier. And more fun. But we all need to find a balance that works for us. Our mission is to help our customers use their phones to live their best lives.

see post

We make your life easier

We make your life easier Since 1992, we’ve been helping customers get the best deal on their dream phone. We firmly believe in giving you the highest quality, for the lowest price. That’s why we work with three of the UK’s leading networks to do all the haggling for you,...

see post

FOUR BRANDS BECOME ONE. CURRYS.

Currys PLC is a leading omnichannel retailer of technology products and services, operating through 800+ stores and 16 websites in seven countries.

see post

Halfords - Quicker, Easier, and Convenient.

At Halfords, we're all about the journey. With more than 700 stores with over 10,000 colleagues, we're the UK's leading retailer of automotive and cycling products. We are also the leading operator in MOT, tyres, car servicing and car repairs - pleasing more than 750,000 customers every year.

see post

FOUR BRANDS BECOME ONE. CURRYS.

Currys PLC is a leading omnichannel retailer of technology products and services, operating through 800+ stores and 16 websites in seven countries.

see post

Sky - Epic. Endless. Entertainment.

It's important to us that everyone gets great customer service and can enjoy our products, no matter their level of sight. So, if you're blind, partially sighted or struggle to see or read the screen, we’ve a range of features to help you get the most from our products and...

see post

Nasty Gal - We exist for the “girl in progress”.

Look iconic, without the hassle— using Nasty Gal discount codes, you can shop your favorite pieces for way less by simply entering one of our promotional codes (of your choice) at the checkout. From delivery offers, to promo deals, we keep ‘em coming, so you always have the offer you...

see post

Digital Publishing From Past to Now

The Covid-19 has caused the school and universities to shut down around the world creating a major issue in Learning and Education. As this virus spreads through the interaction and if social distanci... The Covid-19 has caused the school and universities to shut down around the world creating a major...

see post

Why it’s Important to Manage Your Holiday Calendars?

A printable calendar 2021 is a prominent online platform where you download printable calendars of your choice. These calendars can be customized as per our client requirement with photo, text, logo, or any other image. If you are thinking of planning a dream vacation tour with family and kids but...

see post

The Effects of Yoga on Body and Soul


In correspondence to the needs of these components here comes inner peace, knowledge, and health (Woodyard, 2018). Inner peace is a spiritual need of a soul while knowledge and health are psychologica... In correspondence to the needs of these components here comes inner peace, knowledge, and health (Woodyard, 2018). Inner...

Major Differences between Behavioral and Contingency Leadership Theories


The behavioral theory tests the capacity of the leader whether he is efficient enough to handle tasks or not. The contingency theory tests the impact of the load ad nature of the work on the l... The behavioral theory tests the capacity of the leader whether he is efficient enough...

Leadership Paradigm Essay


It is a framework used to deliver the basics of studying, interpreting, researching, and knowledge relevant to leadership. The variation in leadership classification has led to the constant change in paradigms over the past 60 years. The paradigms of leadership set out the rational design for the creation of an...

Top 5 Important Etiquettes for Sending Funeral & Sympathy Flowers


Know about funeral and sympathy flower etiquette before sending them to the grieving family's house. Read these important tips before you send funeral flowers   When words are not enough, your kind gestures speak for you and express your deepest feelings. Losing someone is a silent pain in which the person...

Why Emergency exits are most important?


Emergency exits are a means of escape from any accident or risk situation . For this reason, they must be marked and visible. The purpose is to be able to prevent loss of life, avoid injuries or protect the property of the establishment.   Emergency exits are a means of escape...

How to Keep Your Money Safe During Turbulent Times


One essential financial decision every smart and money-conscious person must make, asides from how to make money, is how to save their money. Of course, you have endured all the hustles and bustles involved in gathering wealth, and you finally have some money to your name.  One essential financial decision...

Three Safest Ways You Can Secure Your Gold Bullion Investments


Investing in precious metals like silver and gold as a preventive measure against inflation has got to be one of the best investment decisions you ever made. However, now that you have gotten your valuable metals, either in coins or bars, it is essential to consider protecting them adequately.   Investing...

Top 6 Reasons Why You Need a Land Surveyor


Many times, people do not understand why they need a land surveyor. Apart from bridging the gap between design and construction, land surveyors add a lot of value to your building project.   Many times, people do not understand why they need a land surveyor. Apart from bridging the gap between...

Steps of carbon and sulfur analyzer to analyze chemical composition of seamless steel pipe


The carbon-sulfur analyzer analyzes the chemical composition of seamless steel pipes. The principle is that the carrier gas (oxygen) is purified and then introduced into the high-frequency furnace. Steps of carbon and sulfur analyzer to analyze chemical composition of seamless steel pipe  The sample is oxidized by oxygen at the...

Amazing Guide to Conquer Professional Street Photography


  Photography is an art that takes years to master. You work over your camera handling skills, camera settings skills, and you find out ways to work with various props, lights, subjects, and you also... Photography is an art that takes years to master. You work over your camera handling skills,...

Search topic

Amazing Guide to Conquer Professional Street Photography

  Photography is an art that takes years to master. You work over your camera handling skills, camera settings skills, and you find out ways to work with various props, lights, subjects, and you also... Photography is an art that takes years to master. You work over your camera handling skills,...

Learn more