-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
48 lines (40 loc) · 1 KB
/
index.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
38
39
40
41
42
43
44
45
46
47
48
<?php
require "controllers/controller.php";
if (isset($_GET['action']) && !empty($_GET['action'])) {
switch ($_GET["action"]) {
case 'afficherChat':
afficherChat();
break;
case "listeMsg":
if ($_COOKIE['isConnected']) {
recupMessages();
}
break;
default:
http_response_code(404);
break;
}
} else if (isset($_POST['action']) && !empty($_POST['action'])) {
switch ($_POST["action"]) {
case "postMessage":
if ($_COOKIE['isConnected']) {
controleMsg();
}
break;
case "connexion":
connexion();
break;
case "inscription":
inscription();
break;
case "deconnexion":
deconnexion();
break;
default:
echo "Page introuvable";
http_response_code(404);
break;
}
} else {
afficherHome();
}