<?php
require("session.php");
echo"
<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0 Frameset//EN\">
<html>
<head>
<title>PHPmyExim</title>
</head>
";
$domain = $_GET['domain'];
echo"
<!-- frames -->
<frameset cols=\"18%,*\" border=\"0\" frameborder=\"0\">
<frame name=\"menu\" src=\"menu.php?domain=$domain\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" frameborder=\"0\">
<frame name=\"main\" src=\"main.php?domain=$domain\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"auto\" frameborder=\"0\">
</frameset>
<body>
To view this website, you need a browser that supports frames<br>
For e.g.: Internet Explorer 4.x or higher. Netscape Navigator 4.x or higher.
</body>
</html>
";
?>