-
Notifications
You must be signed in to change notification settings - Fork 1
/
permanent.php
37 lines (31 loc) · 1.11 KB
/
permanent.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?php
function afficher_header(){ // affiche différents headers si l'utilisateur est connecté ou non ou si c'est un administrateur
$s="<div class=droite>".accueil();
if (isset($_SESSION["mail"])){
$mail=true;
$s.="<a href=\"index.php?page=modifier\">Modifiez mon profil</a> ";
$s.="<a href=\"index.php?page=deconnexion\">Deconnexion</a></div>";
if ($_SESSION["rank"]==1){
$rank=true;
}
} else {
$s.="</div>";
}
$s.="<h1> <a href=index.php>Ceci est un site</a></h1>";
$s.="<div class=menu><a href=\"index.php?page=ancien_article\">Ancien article</a>";
if (isset($mail)){
$s.="<a href=\"index.php?page=mes_articles\">Mes articles</a>";
$s.="<a href=\"index.php?page=article_form\">Publier un article</a>";
if (isset($rank)){
$s.="<a href=\"index.php?page=moderation_utilisateur\">Gérer les comptes utilisateurs</a><a href=\"index.php?page=moderation_categorie\">Gérer les catégories</a></div>";
} else {
$s.="</div>";
}
}
return $s;
}
function afficher_footer(){
$s="Sité crée par Matthieu GANNE et Florian SZCZEPANSKI<br>";
return $s;
}
?>