summaryrefslogtreecommitdiffstats
path: root/notFinishedCode/pChart2.1.2/examples/sandbox/script/session.php
diff options
context:
space:
mode:
Diffstat (limited to 'notFinishedCode/pChart2.1.2/examples/sandbox/script/session.php')
-rw-r--r--notFinishedCode/pChart2.1.2/examples/sandbox/script/session.php24
1 files changed, 24 insertions, 0 deletions
diff --git a/notFinishedCode/pChart2.1.2/examples/sandbox/script/session.php b/notFinishedCode/pChart2.1.2/examples/sandbox/script/session.php
new file mode 100644
index 0000000..697f9dd
--- /dev/null
+++ b/notFinishedCode/pChart2.1.2/examples/sandbox/script/session.php
@@ -0,0 +1,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);
+?> \ No newline at end of file