Answers for "session php code"

PHP
7

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>
Posted by: Guest on March-30-2020
0

session php

<?php
// start session before any HTML
session_start();

// create some variales in $_SESSION
$_SESSION['name'] = 'myname';
$_SESSION['surname'] = 'mysurname';
$_SESSION['age'] = 24;
?>

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8" />
        <title>My page</title>
    </head>
    <body>
    <p>
        Hey <?php echo $_SESSION['name']; ?> !<br />
        How are you today ?
    </p>
Posted by: Guest on February-10-2021
1

$_SESSION php example

<?php
session_start();
echo session_id();
?>
Posted by: Guest on March-01-2021
-1

session start php

<?php
// This sends a persistent cookie that lasts a day.
session_start([
    'cookie_lifetime' => 86400,
]);
?>
Posted by: Guest on April-17-2020

Browse Popular Code Answers by Language