Backend/20240918_gyak/second.php

16 lines
279 B
PHP
Raw Permalink Normal View History

2024-09-18 18:24:12 +00:00
<?php
session_start();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<?php
echo $_SESSION['username'];
?>
</body>
</html>