2026-02-24 14:26:25 +00:00
|
|
|
<?php
|
|
|
|
|
include("./Assets/functions.php");
|
2026-02-25 07:52:22 +00:00
|
|
|
$config = json_decode(file_get_contents("./Assets/config.json"), true);
|
|
|
|
|
$bdd = connectBDD("localhost", $config["BDD_USER"], $config["BDD_PASSWD"], $config["BDD_NAME"]);
|
2026-02-26 07:41:16 +00:00
|
|
|
$page = "bonnes pratiques";
|
2026-02-24 14:26:25 +00:00
|
|
|
?>
|
|
|
|
|
<!doctype html>
|
|
|
|
|
<html lang="fr">
|
|
|
|
|
|
2026-03-13 16:09:52 +00:00
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
|
<title>Intranet de l'APEI</title>
|
|
|
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-sRIl4kxILFvY47J16cr9ZwB07vP4J8+LH7qKQnuqkuIAvNWLzeN8tE5YBujZqJLB" crossorigin="anonymous">
|
|
|
|
|
<link rel="stylesheet" href="./styles-scripts/pratiques.css">
|
|
|
|
|
<link rel="shortcut icon" href="./Assets/Icones/APEIMBGE.jpg" type="image/x-icon">
|
|
|
|
|
</head>
|
|
|
|
|
<style>
|
|
|
|
|
body {
|
|
|
|
|
padding: 50px;
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
<?php include('./Assets/navbar.php'); ?>
|
|
|
|
|
|
|
|
|
|
<?= html_entity_decode(getPratiques($bdd), ENT_QUOTES, 'UTF-8'); ?>
|
|
|
|
|
|
|
|
|
|
<!-- footer pas toucher -->
|
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/js/bootstrap.bundle.min.js" integrity="sha384-FKyoEForCGlyvwx9Hj09JcYn3nv7wiPVlz7YYwJrWVcXK/BmnVDxM+D2scQbITxI" crossorigin="anonymous"></script>
|
|
|
|
|
</body>
|
2026-03-12 15:26:29 +00:00
|
|
|
|
2026-02-24 14:26:25 +00:00
|
|
|
</html>
|