session_start() php code example
Example 1: php start a session
session_start();
if(!isset($_SESSION["started"]){
$_SESSION["started"] = true;
$_SESSION["attribute_1"] = $value_1;
...
$_SESSION["attribute_n"] = $value_n;
}
Example 2: set php varibianle session
<?php
session_start();
?>
<!DOCTYPE html>
<html>
<body>
<?php
$_SESSION["color"]= "blue";
$_SESSION["animal"]= "dog";
echo "The session variable are set up.";
?>
</body>
</html>
Example 3: session start php
<?php
session_start([
'cookie_lifetime' => 86400,
]);
?>