mirror of
https://github.com/Neetpone/ponepaste.git
synced 2025-03-12 06:30:07 +01:00
7 lines
No EOL
157 B
PHP
7 lines
No EOL
157 B
PHP
<?php
|
|
session_start();
|
|
|
|
// store session data
|
|
if (isset($_SESSION['username']))
|
|
$_SESSION['username'] = $_SESSION['username']; // or if you have any algo.
|
|
?>
|