persistant(global) variables<

liunx

Guest
Can i have in PHP a persistant/global variables which keep their values until the user leaves completly the site?Originally posted by T(rus)T
Can i have in PHP a persistant/global variables which keep their values until the user leaves completly the site?

use sessions:


session_start(); //top of every page in site

$_SESSION["chicken"] = 'This is a global and persistant';



another page:


session_start();

echo $_SESSION["chicken"];ok
thanks:)
 
Back
Top