Tuesday, April 9, 2013

PHP Database Session Class

PHP Scripts - PHP Database Session Class - CodeCanyon

PHP Database Session Class his title this type of PHPScripts/Miscellaneous This time I will review,made by benphelps, PHPScripts/Miscellaneous is sold at a price of $4 in CodeCanyon. PHP Database Session Class - CodeCanyon Item for Sale class // database // mysql // php // secure // session // user //
Created 6 July 10
Last Update 6 July 10
Compatible Browsers IE6, IE7, IE8, Firefox, Opera, Chrome 4, Chrome 5
Software Version PHP 4.x, PHP 5.x, MySQL 4.x, MySQL 5.x, jQuery
Files Included PHP, SQL

Create user sessions with this easy to use class.

Each session is stored in a database and is locked to the current browser and ip address.

  • Create Sessions
  • Destroy Sessions
  • Create Session Variables
  • Access Session Variables
  • Delete Session Variables
  • View session data array

Example

 // Include the class require('session.php'); // setup database array $config = array( 'host' => 'localhost', 'user' => 'root', 'pass' => 'root', 'db' => 'session' ); // create a new class instance $sess = new Session($config); // create a new session $sess->create(); // set a session value $sess->set('key', 'value'); // and another $sess->set('email', 'some@email.com'); // pull a session value $email = $sess->get('email'); // delete a session value $sess->drop('email'); // pull a raw session array $session_array = $sess->raw(); // check if a session is active $acheck1 = $sess->active(); // Save session info to a variable $session_info = $sess->raw(); // destroy the session $sess->destroy(); 

Related produck This user:benphelps

PHP Text Image Class - CodeCanyon Item for Sale LastStream - Last.fm Radio API Class - CodeCanyon Item for Sale DownloadManager - CodeCanyon Item for Sale PHP Key Generation and Authentication Class - CodeCanyon Item for Sale

More items by benphelps

No comments:

Post a Comment