wwwgmo/src/index.php
2025-10-26 20:16:23 +01:00

87 lines
2.8 KiB
PHP

<?php
require_once 'config.php';
$date=date("d/m/Y");
$time=date("H:i:s");
$userAgent=htmlentities($_SERVER['HTTP_USER_AGENT'],ENT_QUOTES,"UTF-8");
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title><?php echo $site_title; ?></title>
<!-- <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9M
uhOf23Q9Ifjh" crossorigin="anonymous"> -->
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/gmo.css">
<?php
echo "<h2>".$site_title."</h2>";
echo $site_copyright;
echo "<hr>";
echo "<h3>MariaDB</h3>";
?>
<table>
<tr>
<td><a href="./createtable.php">Create table </a></td>
<td>&nbsp;&nbsp;</td>
<td>Create an add records in table <b><?php echo $table; ?></b> </td>
</tr>
<tr>
<td><a href="./deletetable.php">Remove table</a></td>
<td>&nbsp;&nbsp;</td>
<td>Remove table <b><?php echo $table; ?></b></td>
</tr>
<tr>
<td><a href="./managetable.php" target="_blank">Manage EMails</a></td>
<td>&nbsp;&nbsp;</td>
<td>Manage EMails (you must create table <b><?php echo $table; ?></b> before manage emails)</td>
</tr>
<tr>
<td><a href="<?php echo $pmaUrl?>" target="_blank">MariaDB manager</a></td>
<td>&nbsp;&nbsp;</td>
<td>Manage Database</td>
</tr>
<tr>
<td><a href="./phpinfo.php">PHP Info</a></td>
<td>&nbsp;&nbsp;</td>
<td>PHP informations</td>
</tr>
</table>
</div>
<hr>
<h3>Elasticsearch</h3>
<table>
<!-- <tr><td>&nbsp;&nbsp;</td></tr> -->
<tr>
<td><a href="./createindex.php">Create index </a></td>
<td>&nbsp;&nbsp;</td>
<td>Create index <b><?php echo $es_index;?></b> and add documents</td>
</tr>
<tr>
<td><a href="./deleteindex.php">Delete index</a></td>
<td>&nbsp;&nbsp;</td>
<td>Remove elasticsearch index <b><?php echo $es_index;?></b> </td>
</tr>
<tr>
<td><a href="./searchindex.php">Résultats de recherche</a></td>
<td>&nbsp;&nbsp;</td>
<td>Résultats de divers recherches dans l'index <b><?php echo $es_index;?></b> </td>
</tr>
<tr>
<td><a href="<?php echo $kibanaUrl?>" target="_blank">Kibana</a></td>
<td>&nbsp;&nbsp;</td>
<td>Elasticsearch indexes manager</td>
</tr>
<tr>
<td><a href="./esinfo.php">Elasticsearch info</a></td>
<td>&nbsp;&nbsp;</td>
<td>Elasticsearch informations</td>
</tr>
</table>
<hr>
<h6><?php echo "Browser&nbsp;: $userAgent\n"?><br>
<?php echo "Nous sommes le $date, il est $time.\n"?></h6>
</body>
</html>
<img src='http://gmoadm.gmolab.net:8085/images/trash.svg' alt='pen' />