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