1
0
Fork 0

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>
</head>
<body>
<form action="map.php" method="GET">
<form action="map.php" method="POST">
<label for="calendrier-list">Sélectionnez un élément :</label>
<select name="calendrier" id="calendrier-list">
<?php foreach ($calendrier as $item) : ?>

View File

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

View File

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