1 / 24

Intermediate PHP (4) Maintaining State (cookies & sessions) & MySQL Interaction

Intermediate PHP (4) Maintaining State (cookies & sessions) & MySQL Interaction. Last week …. Handling Errors & Exceptions Error Types – External, Internal & Logical PHP ’ s Internal Error Handlers Additional Error Types

wolfe
Download Presentation

Intermediate PHP (4) Maintaining State (cookies & sessions) & MySQL Interaction

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Intermediate PHP (4)Maintaining State (cookies & sessions)& MySQL Interaction

  2. Last week … • Handling Errors & Exceptions • Error Types – External, Internal & Logical • PHP’s Internal Error Handlers • Additional Error Types • Error reporting Configuration – using apache.conf, using php.ini & htaccess, at run time • Handling and Displaying Errors • Logging Errors • Ignoring Errors (don’t do it!) • Acting on Errors • Exceptions (using try … catch blocks) • Default and User Defined Exception Handlers

  3. Stateful v. Stateless • "State" is a central concern of all sorts of distributed applications, but especially of Web applications. When applied to a protocol, "state" treats each series of interactions as having continuity, much like a single program's state. A "stateless" protocol is one in which there is no such continuity; each request must be processed entirely on its own merits. • HTTP and its derivatives are intrinsically "stateless". • The request/response cycle of a HTTP interaction does not maintain "memory" of any previous interactions.

  4. Stateful v. Stateless (2) Stateful Interaction: Request 1: “What is Alice’s account number?” Response 1: 145678093 Request 2: “What is her current balance?” Response 2: £345.65 Stateless Interaction: Request 1: “What is Alice’s account number?” Response 1: 145678093 Request 2: “What is Alice’s current balance?” Response 2: £345.65

  5. Is PHP stateless? (well … yes) • On a webserver, PHP scripts have no shared state, so each instance of a PHP script runs in its own logical memory space. • The scripts maintain no persisted state, so each script start off fresh as a daisy, with no data to indicate what happened the previous times it was executed. • Variables are destroyed as soon as the page script finishes executing. • The script can access the ‘referrer’, the address of the previous page, although this can’t really be trusted. • $_SERVER['HTTP_REFERER']

  6. Is PHP stateless? (well … not necessarily) The usual way to maintain state in PHP scripts is via the use of sessions. To understand how these work, we need to have a look at what cookies are and how they work …

  7. Client/Server interaction with Cookies A cookie is a small file that the server embeds on the user's browsers file system. Each time the same browser requests a page, it will send the cookie too. With PHP, you can both create and retrieve cookie values.

  8. Setting / Retrieving / Deleting a Cookie with PHP Setting a cookie : use the setcookie() function setcookie(name, value, expire, path, domain); Retrieve a cookie : use the $_COOKIE superglobal // Print a cookie echo $_COOKIE["name"]; // A way to view all cookies print_r($_COOKIE); Delete a cookie : set the time to a past instance // set the expiration date to one hour ago setcookie("name", "", time()-3600);

  9. Setting & Retrieving a Cookie with PHP <?phpif (!isset($_COOKIE['visits'])) $_COOKIE['visits'] = 0; $visits = $_COOKIE['visits'] + 1; setcookie('visits', $visits, time()+3600*24*365);?><html><head> <title> Title </title></head><body><?phpif ($visits > 1) { echo("This is visit number $visits."); } else { // First visit echo('Welcome to my Website! This is your first visit!'); }?></body></html> Run it Note : the cookie must be sent before any other headers.

  10. setcookie() keys & values setcookie(name [,value [,expire [,path [,domain,secure]]]]]) name = cookie name value = data to store (string) expire = UNIX timestamp when the cookie expires. Default is that cookie expires when browser is closed. path = Path on the server within and below which the cookie is available on. domain = Domain at which the cookie is available for. secure = If cookie should be sent over HTTPS connection only. Default false.

  11. Cookie limits & notes • Each cookie on the user’s computer is connected to a particular domain. • Each cookie can store up to 4kB of data. • A maximum of 20 cookies can be stored on a user’s PC per domain • Only strings can be stored in Cookie files. • To store an array in a cookie, convert it to a string by using the serialize()PHP function. • The array can be reconstructed using the unserialize() function once it had been read back in. • Cookies are stored client-side, so never can’t be trusted completely: They can be easily viewed, modified or created by a 3rd party. • They can be turned on and off at will by the user.

  12. PHP Sessions • Since HTTP is a stateless protocol – a PHP session can be used to store user information on the server for later use (i.e. username, shopping items, etc). • Session information is temporary and will be deleted after the user has left the website. Session data can be made persistent by storing the data in a database. • Sessions work by creating a unique id (UID) for each visitor and store variables based on this UID. The UID is either stored in a cookie or is propagated in the URL (if cookies are turned off for instance).

  13. Cookies v. Sessions

  14. Starting / Resuming a Session session_start(); PHP does all the work: It looks for a valid session id in the $_COOKIEor $_GETsuperglobals – if found it initializes the data. If none found, a new session id is created. Note that like setcookie(), this function must be called before any echoed output to browser. Example session id: 26fe536a534d3c7cde4297abb45e275a

  15. Storing / Retrieving / Deleting Session data The $_SESSIONsuperglobal array can be used to store any session data. e.g. $_SESSION[‘name’] = $name; $_SESSION[‘age’] = $age; To retrieve session values, data is simply read back from the $_SESSIONsuperglobal array. e.g. $name = $_SESSION[‘name’]; $age = $_SESSION[‘age’]; To delete session data – simply unset()a particular session variable e.g. unset($_SESSION[‘name’]); To destroy a session – use the session_destory() function e.g. session_destory();

  16. Setting & Retrieving a Session value with PHP <?phpsession_start();if(isset($_SESSION['visits'])) { $_SESSION['visits']=$_SESSION['visits']+1;} else { $_SESSION['visits']=1;} echo "This is visit number ". $_SESSION['visits']; ?> Run it

  17. Typical process flow to save session data in a DB

  18. PHP & DB Interaction with MySQL MySQL • Open Source (relational) database server • Runs on many platforms (Unix & Windows) • Networked server – no fancy GUI like MS Access. • You can find clients(such as phpMyAdmin)that provide a GUI. • phpMyAdmin @ cems : http://isa.cems.uwe.ac.uk/phpmyadmin (note: only available within uwe) • Great for small, medium to large-sized applications (ebay, amazon, facebook etc. all make use of it)

  19. phpMyAdmin • A MySQL client written in PHP • Via a browser you can manage: • Manage Databases • Manage MySQL users • Submit queries (SQL) • A great way to learn SQL!

  20. PHP (main) API’s for using MySQL • There are three main API options when considering connecting to a MySQL database server: • PHP's MySQL Extension - original extension which provides a procedural interface and is intended for use only with MySQL versions older than 4.1.3. Can be used with versions of MySQL 4.1.3 or newer, but not all of the latest MySQL server features will be available. • PHP's mysqli Extension - MySQL improved extension takes advantage of new features found in MySQL versions 4.1.3 and newer. The mysqliextension is included with PHP versions 5 and later. • PHP Data Objects (PDO) - PHP Data Objects, or PDO, is a database abstraction layer that provides a consistent API regardless of the type of database server. In theory, it allows for the switch of the database server, from say Firebird to MySQL, with only minor changes the PHP code.

  21. Advantages of the mysqli API • Object-oriented interface • Support for Prepared Statements • Support for Multiple Statements • Support for Transactions • Enhanced debugging capabilities • Embedded server support Note: If using MySQL versions 4.1.3 or later it is strongly recommended that the mysqli extension is used.

  22. example MySQL db Entity Model Example records (3)

  23. example script using mysqli // Connect to the db $mysqli = new mysqli('hostname','username','password','database'); //Send the query to the database and pull the records in a // certain category using the SELECT statement // If the result returns true if ($result = $mysqli->query("SELECT quote, url FROM quote WHERE category='love'")) { // print out the number of records retrieved echo 'For the category "love", there are ' .$result->num_rows.' records.<br/>'; // The "fetch_object()" method allows access to the returned // rows within the resource object ($result in this case). while ($row = $result->fetch_object()) { echo 'Quote: '.$row->quote.' '; echo 'URL: <a href='.$row->url.'>'.$row->url. '</a><br/>'; } } else { // it’s an error & the query failed echo $mysqli->error; } // end else $mysqli->close(); Run it

  24. Update / delete/ add new record using mysqli – left as an exercise

More Related