“Utwórz sesję w PHP” Kod odpowiedzi

Utwórz sesję w PHP

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

  // Set session variables
  $_SESSION["color"]= "blue";
  $_SESSION["animal"]= "dog";
  echo "The session variable are set up.";
?>
Ankur

Zmienne sesji PHP

<?php
   session_start();
   $_SESSION['var'];
?>
NiCo

Nowa sesja php

Creating New Session
==========================
<?php
session_start();
/*session is started if you don't write this line can't use $_Session  global variable*/
$_SESSION["newsession"]=$value;
?>
Getting Session
==========================
<?php
session_start();
/*session is started if you don't write this line can't use $_Session  global variable*/
$_SESSION["newsession"]=$value;
/*session created*/
echo $_SESSION["newsession"];
/*session was getting*/
?>
Updating Session
==========================
<?php
session_start();
/*session is started if you don't write this line can't use $_Session  global variable*/
$_SESSION["newsession"]=$value;
/*it is my new session*/
$_SESSION["newsession"]=$updatedvalue;
/*session updated*/
?>
Deleting Session
==========================
<?php
session_start();
/*session is started if you don't write this line can't use $_Session  global variable*/
$_SESSION["newsession"]=$value;
unset($_SESSION["newsession"]);
/*session deleted. if you try using this you've got an error*/
?>

Reference: http://gencbilgin.net/php-session-kullanimi.html
Tame Tuatara

$ _Session PHP Przykład

<?php
session_start();
echo session_id();
?>
Elated Eagle

Sesja Start PHP


<?php
// This sends a persistent cookie that lasts a day.
session_start([
    'cookie_lifetime' => 86400,
]);
?>

Foolish Ferret

$ session php

<form action="login.php" method="post">
Dein Name: <br />
<input type="Text" name="name" />
<input type="Submit" />
</form>
Breakable Butterfly

Odpowiedzi podobne do “Utwórz sesję w PHP”

Pytania podobne do “Utwórz sesję w PHP”

Więcej pokrewnych odpowiedzi na “Utwórz sesję w PHP” w PHP

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu