Raspsnir/public_html/profile/index.php

29 lines
640 B
PHP
Raw Permalink Normal View History

<!DOCTYPE html>
<html lang="fr">
<head>
<?php include ($_SERVER['DOCUMENT_ROOT'].'/includes/header.php'); ?>
<title>RASPSNIR - <?php echo strtoupper($_SESSION['pseudo']); ?></title>
</head>
<body>
<div class="row">
<div class="col s12 m6">
<?php if(!isset($_SESSION['pseudo']))
{
}
else
{
}
?>
</div>
</div>
<?php include ($_SERVER['DOCUMENT_ROOT'].'/includes/footer.php'); ?>
</body>
</html>