Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

create session in php

<?php 
  // Start the session
  session_start();

  // Set session variables
  $_SESSION["color"]= "blue";
  $_SESSION["animal"]= "dog";
  echo "The session variable are set up.";
?>
 
PREVIOUS NEXT
Tagged: #create #session #php
ADD COMMENT
Topic
Name
1+7 =