Carte okay

This commit is contained in:
Fred Tempez 2023-07-11 17:31:14 +02:00
parent 1ffe2763d4
commit 9baff57598
3 changed files with 6 additions and 5 deletions

View File

@ -44,7 +44,7 @@ foreach ($calendrierLinks as $link) {
<title>Formulaire de sélection</title> <title>Formulaire de sélection</title>
</head> </head>
<body> <body>
<form action="map.php" method="GET"> <form action="map.php" method="POST">
<label for="calendrier-list">Sélectionnez un élément :</label> <label for="calendrier-list">Sélectionnez un élément :</label>
<select name="calendrier" id="calendrier-list"> <select name="calendrier" id="calendrier-list">
<?php foreach ($calendrier as $item) : ?> <?php foreach ($calendrier as $item) : ?>

View File

@ -1,7 +1,7 @@
<?php <?php
// URL de la page à analyser // URL de la page à analyser
$url = $_GET['calendrier']; $url = $_POST['calendrier'];
// $url = 'https://www.sabradou.com/index.php'; // $url = 'https://www.sabradou.com/index.php';
// Récupération du contenu de la page // Récupération du contenu de la page

View File

@ -1,5 +1,6 @@
#map { #map {
height: 1600px; height: 800px;
width: 1200px; width: 1600px;
margin: auto 0; margin-left: auto;
margin-right: auto;
} }