Answers for "php session löschen"

PHP
2

end session variable php

// destroy the session
<?php
session_destroy();
?>
Posted by: Guest on April-25-2020
22

php sessions

<?php
  	// Start new or resume existing session.
  	session_start();
	
	// Add values to the session.
	$_SESSION['item_name'] = 'value'; // string
	$_SESSION['item_name'] = 0; // int
	$_SESSION['item_name'] = 0.0; // float

	// Get session values.
	$value = $_SESSION['item_name'];
?>
Posted by: Guest on May-08-2020

Browse Popular Code Answers by Language