sid/page/settings.php

14 lines
326 B
PHP
Raw Normal View History

<?php define('__ROOT__', dirname(dirname(__FILE__)) );
require_once __ROOT__.'/manager/security.php';
/***************/
/*** PROFILE ***/
/***************/
if( $_SESSION['identifiant'] != null ){ // si l'utilisateur est connecté
echo "<section name='myprofile' title='Profil'>";
echo 'profil';
echo '</section>';
} ?>