psmreborn/redirect.php
2022-09-20 00:50:45 +12:00

6 lines
122 B
PHP

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