Skip to content

Instantly share code, notes, and snippets.

@pastyrMisha
Last active December 20, 2017 21:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pastyrMisha/f3f02697100ce318647643af22983295 to your computer and use it in GitHub Desktop.
Save pastyrMisha/f3f02697100ce318647643af22983295 to your computer and use it in GitHub Desktop.
СЕССИИ ($_SESSION)
<?php
session_start();
$num = (isset ($_SESSION["num"])) ? $_SESSION["num"] : 0;
$num++;
$_SESSION["num"] = $num;
echo "Пользователь обновил страницу $num раз";
// session_destroy (); /*- удаляет сессию*/
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment