-
Notifications
You must be signed in to change notification settings - Fork 2
/
admin.php
103 lines (101 loc) · 4 KB
/
admin.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<?php
session_start();
?>
<!doctype html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>ReSoC - Administration</title>
<meta name="author" content="Julien Falconnet">
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<?php
include "menu.php";
?>
<?php
/**
* DONE
* Etape 1: Ouvrir une connexion avec la base de donnée.
*/
// on va en avoir besoin pour la suite
// $mysqli = new mysqli("localhost", "root", "root", "socialnetwork");
//verification
// if ($mysqli->connect_errno)
// {
// echo("Échec de la connexion : " . $mysqli->connect_error);
// exit();
// }
include "dbconnect.php";
?>
<div id="wrapper" class='admin'>
<aside>
<h2>Mots-clés</h2>
<?php
/*
* Etape 2 : trouver tous les mots clés
*/
$laQuestionEnSql = "SELECT * FROM `tags` LIMIT 50";
$lesInformations = $mysqli->query($laQuestionEnSql);
// Vérification
if ( ! $lesInformations)
{
echo("Échec de la requete : " . $mysqli->error);
exit();
}
/*
* Etape 3 : @todo : Afficher les mots clés en s'inspirant de ce qui a été fait dans news.php
* Attention à en pas oublier de modifier tag_id=321 avec l'id du mot dans le lien
*/
while ($tag = $lesInformations->fetch_assoc())
{
echo "<pre>" . print_r($tag, 1) . "</pre>";
?>
<article>
<h3>#chaussette</h3>
<p>id:</p>
<nav>
<a href="">#<?php echo $tag['taglist']?></a>
</nav>
</article>
<?php } ?>
</aside>
<main>
<h2>Utilisatrices</h2>
<?php
/*
* Etape 4 : trouver tous les mots clés
* PS: on note que la connexion $mysqli à la base a été faite, pas besoin de la refaire.
*/
$laQuestionEnSql = "SELECT * FROM `users` LIMIT 50";
$lesInformations = $mysqli->query($laQuestionEnSql);
// Vérification
if ( ! $lesInformations)
{
echo("Échec de la requete : " . $mysqli->error);
exit();
}
/*
* Etape 5 : @todo : Afficher les utilisatrices en s'inspirant de ce qui a été fait dans news.php
* Attention à en pas oublier de modifier dans le lien les "user_id=123" avec l'id de l'utilisatrice
*/
while ($tag = $lesInformations->fetch_assoc())
{
echo "<pre>" . print_r($tag, 1) . "</pre>";
?>
<article>
<h3> <a href= "wall.php?user_id=<?php echo $tag['id']?>"><?php echo $tag['alias']?></a></h3>
<p><a href= "wall.php?user_id=<?php echo $tag['id']?>"><?php echo $tag['id']?></a></p>
<nav>
<a href="wall.php?user_id=<?php echo $tag['id']?>">Mur</a>
| <a href="feed.php?user_id=<?php echo $tag['id']?>">Flux</a>
| <a href="settings.php?user_id=<?php echo $tag['id']?>">Paramètres</a>
| <a href="followers.php?user_id=<?php echo $tag['id']?>">Suiveurs</a>
| <a href="subscriptions.php?user_id=<?php echo $tag['id']?>">Abonnements</a>
</nav>
</article>
<?php } ?>
</main>
</div>
</body>
</html>