declare session variable in php code example
Example 1: set php varibianle session
<?php
// Start the session
session_start();
?>
<!DOCTYPE html>
<html>
<body>
<?php
// Set session variables
$_SESSION["color"]= "blue";
$_SESSION["animal"]= "dog";
echo "The session variable are set up.";
?>
</body>
</html>
Example 2: php session variables
<?php
session_start();
$_SESSION['var'];
?>