PHP/Cookie Session/Session Variables Create — различия между версиями

Материал из Web эксперт
Перейти к: навигация, поиск
м (1 версия)
 
(нет различий)

Версия 10:37, 26 мая 2010

Create session variable

<?php
   session_start();
   $_SESSION["username"] = "Joe";
   echo "Your username is ".$_SESSION["username"].".";
?>



Initiate session and create a few session variables

<?php
   // Initiate session and create a few session variables
   session_start();
   // Set the variables. These could be set via an HTML form, for example.
   $_SESSION["username"] = "joe";
   $_SESSION["loggedon"] = date("M d Y H:i:s");
   // Encode all session data into a single string and return the result
   $sessionVars = session_encode();
   echo $sessionVars;
?>