Subversion Repositories Sites.obs-saisons.fr

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 aurelien 1
<html>
2
<head>
3
<link rel="stylesheet" href="odsadmin.css" type="text/css" />
4
</head>
5
<body>
6
<?
7
 
8
$CHEMIN_DOCS = "/www/pheno-adultes/obssaiso";
9
 
10
$parties = array("especes","evenements","participants","x"=>"export");
11
 
12
$admin = 0;
13
if (isset($_GET['a']))
14
  $admin = $_GET['a'];
15
?>
16
 
17
<table border="0">
18
<tr><td><img src="../IMG/logo1.jpg"></td><td class="bandeau">ADMININISTRATION de l'Observatoire des Saisons
19
<br><br>Les <?= $parties[$admin] ?>
20
</td>
21
</tr>
22
<tr>
23
<td class="menu">
24
<? foreach ($parties as $p => $partie) { ?>
25
<? if (is_numeric($p)) { ?>
26
<a href="index.php?a=<?= $p ?>">Les <?= $partie ?></a>
27
<br><br>
28
<? } } ?>
29
<a href="http://www.obs-saisons.fr/phpBB2/admin">Admin du forum Adultes</a>
30
<br><br>
31
<a href="http://junior.obs-saisons.fr/phpBB2/admin">Admin du forum Junior</a>
32
<br><br>
33
<a href="http://www.obs-saisons.fr/ecrire">Admin du site Adultes</>
34
<br><br>
35
<a href="http://junior.obs-saisons.fr/ecrire">Admin du site Junior</>
36
<br><br>
37
<a href="index.php?a=x">Export</>
38
</td>
39
<td width="800">
40
<?
41
include($parties[$admin].".php");
42
?>
43
</td>
44
</tr>
45
</table>
46
</body>
47
</html>