extranet/www/pages/accueil.php

22 lines
976 B
PHP

<?php
if (!$_SESSION['connected'])
echo ('Vous devez être connecté afin de pouvoir utiliser cette fonctionnalité');
else
{ ?>
<table border=1>
<tr>
<td>
<b><u>Menu provisoire</u></b><br>
<ul>
<li><a href="./?page=recherche">Recherche</a></li>
<li><a href="http://sd-4213.dedibox.fr/phpmyadmin/" target="_blank">phpMyAdmin</a>&nbsp;Gestion du serveur MySQL</li>
<li><a href="http://sd-4213.dedibox.fr/philex" target="_blank">PHilEX</a>&nbsp;Explorateur de fichiers</li>
<li><a href="http://sd-4213.dedibox.fr/apache2-dedibox-sd-4213-server-status" target="_blank">Infos Status</a>&nbsp;Processus Web sur le serveur</li>
<li><a href="http://sd-4213.dedibox.fr//apache2-dedibox-sd-4213-server-info" target="_blank">Infos Serveur</a>&nbsp;Configuration Apache</li>
<br />
<li><a href="http://imp.online.net/?imapuser=<?=$_SESSION['mon_email']?>" target="_blank">WebMail Online</a>&nbsp;Consultation du mail <?=$_SESSION['mon_email']?></li>
</ul>
</td>
</tr>
</table>
<?}?>