File "otherpage.php"
Full Path: /home/analogde/www/Liens/liste/otherpage.php
File size: 585 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
// otherpage.php
// Récupérer les paramètres de l'URL
$list = isset($_GET['list']) ? htmlspecialchars($_GET['list']) : 'Liste non spécifiée';
$item = isset($_GET['item']) ? htmlspecialchars($_GET['item']) : 'Élément non spécifié';
?>
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Affichage des paramètres</title>
</head>
<body>
<h1>Paramètres reçus</h1>
<p>Liste : <?php echo $list; ?></p>
<p>Élément : <?php echo $item; ?></p>
</body>
</html>