15 lines
344 B
PHP
Executable file
15 lines
344 B
PHP
Executable file
<html>
|
|
<head>
|
|
<link rel="stylesheet" href="/css/main.css" id="pagestyle">
|
|
<?php
|
|
require 'config.php';
|
|
require 'common.php';
|
|
echo('<meta http-equiv="refresh" content="5; url=' . getRandom() . '"/>');
|
|
?>
|
|
<title>Redirecting</title>
|
|
</head>
|
|
<body>
|
|
<p>redirecting you to a random site...</p>
|
|
</body>
|
|
</html>
|
|
|