J'ai un code php ici et je voudrais créer un "retour" href pour me ramener où j'étais avant. Voici ce que j'ai:code pour le bouton retour
<input type="submit" <a href="#" onclick="history.back();">"Back"</a>
<html>
<head></head>
<body>
<?php
// get form selection
$day = $_GET['day'];
// check value and select appropriate item
if ($day == 1) {
$special = 'Chicken in oyster sauce';
}
elseif ($day == 2) {
$special = 'French onion soup';
}
elseif ($day == 3) {
$special = 'Pork chops with mashed potatoes and green salad';
}
else {
$special = 'Fish and chips';
}
?>
<h2>Today's special is:</h2>
<?php echo $special; ?>
<input type="submit" <a href="#" onclick="history.back();">"Back"</a>
</body>
</html>
Aidez-nous s'il vous plaît. Merci d'avance!
Et votre problème est quoi, exactement? –
Probablement le imbriqué à l'intérieur de la balise . (Lequel devrait être le bouton type, pas le type de soumission). Mais Dave a déjà posté une réponse. – EboMike