n/oldblog
Archived
1
0
Fork 0
This repository has been archived on 2024-02-13. You can view files and clone it, but cannot push or open issues or pull requests.
oldblog/modules/redirect.php
2023-04-30 21:50:11 +02:00

14 lines
326 B
PHP

<?php
$ListeLiens=$_POST["ListeLiens"];
echo " <html>
<head>
<meta http-equiv='refresh' content='0;url=$ListeLiens'>
<title>$ListeLiens</title>
</head>
<body>
<div align=center>Vous allez être redirigé vers <a href='$ListeLiens'>$ListeLiens</a>.<br>Veuillez patienter...</div>
</body>
</html>";
?>