psmreborn/redirect.php

6 lines
122 B
PHP
Executable File

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