14 lines
326 B
PHP
Executable File
14 lines
326 B
PHP
Executable File
<?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>';
|
|
|
|
} ?>
|