Web Development Information |
|
Developing State-enabled Applications With PHP
Installment 1 Developing State-enabled Applications With PHP When 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 cookies The next installment discusses how to manage sessions using cookies... Installment 2 Cookies Cookies 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 session 2. The server creates a cookie and uses the Set-Cookie header field in the HTTP response to pass the cookie to the browser 3. The browser reads the cookie field in the HTTP response and stores the cookie 4. This cookie information is passed along future browser-server communications and can be used in the PHP scripts as a variable PHP 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 cookie 2. 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. John 3. expiration_date - the lifetime of the cookie. After this date, the cookie expires and is unusable 4. path - the path refers to the URL from which the cookie is valid and allowed 5. domain - the domain the created the cookie and is allowed to read the contents of the cookie 6. secure - specifies if the cookie can be sent only through a secure connection - e.g. SSL enable sessions The 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 3 PHP Session Handling - Cookies Enabled Instead 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 session 2. PHP generates a sssion ID and creates a session file to store future information as required by subsequent pages 3. A cookie is generated wih the session ID at the browser 4. This cookie that stores the session ID is transparently and automatically sent to the server for all subsequent requests to the server The 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 session 2. string session_id([string id]) - either returns the current session id or specify the session id to be used when the session is created 3. boolean session_register(mixed name [, mixed ...]) - registers variables to be stored in the session file. Each parameter passed in the function is a separate variable 4. boolean session_is_registered(string variable_name) - checks if a variable has been previously registered to be stored in the session file 5. 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 4 PHP Session Handling - Without Cookies If 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: Building the URL using SID: Used with the author's permission. This article is written by John L.
MORE RESOURCES: Help with Tax Calculator SitePoint UA Little Rock Student Gains International Experience as Web Development Intern in Australia University of Arkansas at Little Rock Welcome animation conflict with barba js SitePoint Web Design and Development Muskegon Community College From accounting to web development: Meet this Ironhack grad making big strides in programming Refresh Miami Button Styles Not Working On Phones SitePoint Will Ukraine nuke Russia if Donald Trump cuts aide? Reports say the country is just months away from build The Economic Times Northeastern grad goes from schooling to working full time at web development startup he created Northeastern University 17 Best Tech Website Designs in 2024 DesignRush The future of programming SitePoint Register for AIM’s Free Web Development Course by Sept. 10 Silicon Prairie News Latest News: Rising Senior Uses Computer Science Coursework to Thrive in Web Development Role Muhlenberg College Best Website Development Tools for 2024 DesignRush Wordpress-Gutenberg/React: MediaUpload? SitePoint Best web development tool of 2024 TechRadar Best PHP Frameworks for Web Development in 2024 Simplilearn 10 Best SEO Services Of 2024 Forbes Best web design software of 2024 TechRadar 38 Web Development Stats You Should Know in 2024 Influencer Marketing Hub Best laptops for programming of 2024 TechRadar WordPress Script Isn't Working SitePoint New Web Development Tool Pulls Design Tokens From Figma The New Stack CSS prevents page scrolling SitePoint Top 10 Front End Languages - A Beginner's Guide Simplilearn 35 Best Web Design Companies 2024 Built In Bachelor of Arts in Web Design and Development - Information Science University of Arkansas at Little Rock 10 Chicago Web Design and Development Agencies You Should Know Built In Chicago Any SEO benefits from Dedicated hosting? SitePoint Catchpoint Empowers Front-end Web Development Teams with Unparalleled Enterprise Insights Business Wire |
RELATED ARTICLES
Having a Portfolio on the Internet Can Help you Infiltate the Workforce If you're an up and coming graphic/web designer just out of university, you'll know it's quite hard to break into the workforce. You have to contact employers one by one, spend your time traveling and lugging your portfolio to their offices. Getting One-way Inbound Links: the 5 Major Strategies With search engines putting a damper on direct reciprocal links, the hunt for the elusive one-way inbound link is on.As someone who works with small business website owners, I've heard just about every inbound-linking scheme there is. Better Web Site ROI: Efficient Online Business with SEO, PPC, Split Testing, and Forums If you're looking for better web site ROI, chances are, the web is only one part of your business, you have a specific budget for your web site, and you want the site to not only carry its own weight, but why can't it make you some extra dough, too?The corporate situation: budgets need to be closely watched, and tech people can't get carried away with unnecessary frills.My own experience making money online and becoming and SEO expert was more guerilla than corporate. Optimal Website Design Optimal website design is the art of logical navigation.It will offer consistency while providing useful, quality information that is attractive to the eye and easy to understand. Web Site Development Process - The Life-cycle Steps A system development process can follow a number of standard or company specific frameworks, methodologies, modeling tools and languages. Software development life cycle normally comes with some standards which can fulfill the needs of any development team. Website Conversion Rate: More Keywords Equals More Sales Your website conversion rate should concern you. This simply refers to how many visitors to your website it takes before you make a sale. 4 Rock Solid Reasons For Building Your Own Website What is the point of having a website, you may ask, when the affiliate programme you have joined has provided you with your own web page to promote? This is a fair question. The answer has to be that with your own site - and of course your own domain name - you will have a lot more control over your business. Bring Your Visitors Back Clamoring for More! Maintain and Improve Your Web Site Weekly - Part 1 80% of your Web site is Maintenance!Once your Web site is up, you must maintain it. That means changes, and each time you make a change, you may make a mistake. The Evolution Of Search There have been many significant changes to the face of search over the last several years with engines becoming more intelligent than ever before. Today's users expect mainly fast, easy, relevant and satisfactory search results. 9 Simple Steps to Create a Background Tiled Image Branded with Your Name You have seen those web pages where they have the name of the Name Web repeated over over over in square tiles as the background. Now by following these 9 Simple steps you too can create a web page Branded with your Name, or Company Name. 7 Profit Producing Reasons Why Every Successful Service Professional Needs A Web Presence Your business website is a critical aspect of being able to start and continue conversations with potential clients. It's the ultimate self-service window for potential and current clients who come to you interested in your services and/or products. Beyond Web Usability: Web Credibility If you've been developing websites on Mars for the past few years then you'll be forgiven for not knowing about web usability. You'll still be creating splash intro pages, having pages with massive download times and using more images than you can shake a stick at. How To Convert More Sales On Your Website One of the biggest mistakes that most online retailers make is they do not take into account typical buyer behaviour. The conversion from real world to online provides many benefits to the retailer, but present some real challenges for the customer because their buying decision is made more difficult in an online environment. MySQL Database Handling in PHP Most interactive websites nowadays require data to be presented dynamically and interactively based on input from the user. For example, a customer may need to log into a retail website to check his purchasing history. 9 Keys to an Effective Website Many small companies choose not to invest in a professionally designed website, although a well-designed Web site may raise the company's level of professionalism and exposure - AND drive business and sales!Make sure your website is working for you with the following characteristics:Usability enables your users to get the most out of your site. This means that the site's navigation is consistent, clear and easy to follow; forms and links are in working order; and the information on the site is current and answers incoming clients' potential questions. Stop Losing Precious Web Site Traffic to the Dreaded World Wide Web Black Hole You work hard to build traffic to your web page. If you are not doing 1 simple step you are loosing a portion of all your web site traffic to the dreaded World Wide Web Black Hole. Is Your Website Doomed for Failure Before Youve Built It? One of the things that many people overlook when building a new website is keywords. I have to admit, I did exactly the same thing myself when I started out. Pick Up Your Own Domain Name Think up a name and check if yourname.com is available. You Need To Treat Your Website Like An Employee - Heres 5 Ways To Do It People often come to me in a state of crisis and say their website isn't working. Usually they're in a cold sweat:"Mike, give me some practical things I can do to get more sales from my website!"You want practical advice? Stop treating your website like an object in your business and start treating it like an employee. The Road to Better Results A lot has changed in the way sites are optimized for search engines since last year. For one thing, Google is not the only search engine worth looking into anymore; Yahoo has definitely managed to take away some of Google's oomph over the past twelve months. |
home | site map |
© 2006 |