summaryrefslogtreecommitdiffstats
path: root/notFinishedCode/pChart2.1.2/examples/sandbox/script/session.php
blob: 697f9dd94f95debef5c8a90a71b04a998e69efae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
 /*
     session.php - Sandbox sesson manager

     Version     : 1.1.0
     Made by     : Jean-Damien POGOLOTTI
     Last Update : 18/01/11

     This file can be distributed under the license you can find at :

                       http://www.pchart.net/license

     You can find the whole class documentation on the pChart web site.
 */

 session_start();

 foreach($_GET as $Key => $Value)
  { $_SESSION[$Key] = $Value; }

 print_r($_SESSION);

 usleep(200000);
?>