<?php

$x = rand(1,10);

switch ($x)
{
  case 1:
  $t = "W.O.P.R.";
  break;
  case 2:
  $t = "W.O.P.R.";
  break;
  case 3:
  $t = "C64";
  break;
  case 4:
  $t = "decrunching";
  break;
  case 5:
  $t = "decrypting";
  break;
  case 6:
  $t = "glitch";
  break;
  case 7:
  $t = "udp_dump";
  break;
  case 8:
  $t = "cybermon";
  break;
  case 9:
  $t = "terminal";
  break;
  case 10:
  $t = "dump";
  break;
}

echo '
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <meta http-equiv="Cache-Control" content="no-store" />
    <title>'.$t.'</title>
  <style>
    body {
      background-image: url(';
echo "'".$x.".gif'";
echo ');
      background-repeat: no-repeat;
      background-attachment: fixed;
      background-size: cover;
    }
  </style>
  </head>
  <body bgcolor="#000000">
  </body>
</html>
';

?>