psmreborn/redirect.php

6 lines
122 B
PHP
Raw Normal View History

2022-09-19 12:50:45 +00:00
<?php
if(isset($_GET["url"]))
{
echo('<script>window.location="'.htmlspecialchars($_GET["url"]).'";</script>');
}
2021-03-25 12:37:35 +00:00
?>