-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
74 lines (71 loc) · 2.72 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
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
<?php
include_once("./includes.php");
entete("Index");
?>
<div class="container">
<!----------- Tab FICHIERS ----------->
<div class="row">
<div class="span6">
<?php
if (!isset($_SESSION['idUtil']))
{
echo'Vous devez etre inscrit et connecté pour visionner cette page.';
header("location : ./index.php");
}else{
echo"<form class='form-actions'>
<legend>Derniers Ajouts</legend>
<table class='table table-bordered table-condensed'>
<thead>
<tr>
<th><h4>Nom du fichier</h4></th>
<th><h4>Topic</h4></th>
<th><h4>Propriétaire</h4></th>
<th><h4>Types</h4></th>
</tr>
</thead>
<tbody>
<tr>
<td><a href='./audio/SleepAway.mp3'>2 see</a></td>
<td><a href='./message.php'>You See</a></td>
<td>Val</td>
<td>Audio</td>
</tr>
<tr>
<td><a href='./audio/Kalimba.mp3'>Kalimba</a></td>
<td><a href='./message.php'>To My Dad</td>
<td>Val</td>
<td>Audio</td>
</tr>
</tbody>
</table>
</form>
</div>
<!----------- Tab Topics/Messages ----------->
<div class='span6'>
<form class='form-actions'>
<legend>Dernières news</legend>
<table class='table table-bordered table-condensed'>
<thead>
<tr>
<th><h4>Forum</h4></th>
<th><h4>Topic</h4></th>
<th><h4>Sujets</h4></th>
<th><h4>Dernier Messages</h4></th>
</tr>
</thead>
<tbody>
<tr>
<td><a href='./forum.php'>Lyrics</a></td>
<td><a href='./topic.php'>Lyrics</a></td>
<td><a href='./message.php'>2 see</a></td>
<td>Mer mar 14, 2012 3:05pm<br/>Tom</td>
</tr>
</tbody>
</table>
</form>";};
?>
</div>
</div>
<?php
pied();
?>