-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathorganisateur.php
More file actions
41 lines (36 loc) · 934 Bytes
/
organisateur.php
File metadata and controls
41 lines (36 loc) · 934 Bytes
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
<?php
session_start();
$titre = 'organisateur';
include('start.php');
include('BDD.php');
?>
<?php /* include("head.php"); */ ?>
<?php
include("header.php");
include("nav.php");
?>
<section>
<aside class ="new">
<?php include('nouveauteEvenement.php'); ?>
</aside>
<aside class ="navg">
<?php include ("arbre.php"); ?>
</aside>
<table class="organisateur" style="position: absolute;
top:500px;
margin-left:400px;">
<tr>
<th>titre des sujets</th>
<th>createur</th>
<th>date de creation</th>
<th>dernier message</th>
</tr>
<tr>
<td><a href="nouveauCommentaire.php">bar</a></td>
<td>Bolzastreet</td>
<td>12/12/12</td>
<td>la vie est un jeu</td>
</tr>
</table>
</section>
<?php include('footer.php'); ?>