psmreborn/redirect.php
2022-09-19 13:02:19 +00:00

6 lines
122 B
PHP
Executable File

<?php
if(isset($_GET["url"]))
{
echo('<script>window.location="'.htmlspecialchars($_GET["url"]).'";</script>');
}
?>