Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
FTP
/
Monsta-FTP-master
:
page2.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php // Récupérer l'URL de la page précédente (passée en paramètre) $source = isset($_GET['source']) ? $_GET['source'] : 'titi.html'; ?> <!DOCTYPE html> <html lang="fr"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>P2</title> <script> // Désactiver la touche retour en arrière du navigateur /*window.history.pushState(null, "", window.location.href); window.onpopstate = function () { window.history.pushState(null, "", window.location.href); };*/ /*history.forward(); function disableBack() { window.history.forward(); } setTimeout("disableBack()", 0); window.onunload = function () { null };*/ function DisableBackButton(){ window.history.forward() } DisableBackButton(); window.onload = DisableBackButton; window.onpageshow = function(evt) { if (evt.persisted) DisableBackButton() } window.onload = function() {void(0)} // Fonction pour revenir à la page source function goBack() { window.location.href = "<?php echo htmlspecialchars($source); ?>"; } </script> </head> <body> <h1>Bienvenue sur P2</h1> <button onclick="goBack()">Revenir à la page précédente</button> </body> </html>