Answers for "where sql putting $session php"

PHP
2

select session php

$query = mysql_query("select id from CUSTOMER where username = '".$_SESSION['username']."'");
//eng.aamiralshawa
Posted by: Guest on February-19-2022
5

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.";
?>
Posted by: Guest on June-16-2020

Browse Popular Code Answers by Language