Answers for "how to set session variable sphp"

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

how to set session variable sphp

<?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: Taylor Swift on April-19-2022

Code answers related to "how to set session variable sphp"

Browse Popular Code Answers by Language