psmreborn/redirect.php

6 lines
117 B
PHP
Raw Normal View History

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