Subversion Repositories cryptochat

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 daniel-mar 1
<?php
2
 
3
if (!isset($_COOKIE['mov_nick'])) {
4
        header('location:index.php');
5
        die();
6
}
7
 
8
if (isset($_GET['show'])) {
9
        $show = $_GET['show'];
10
} else {
11
        $show = 20;
12
}
13
 
14
?><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
15
<html>
16
<head>
17
<title>MOV Alpha</title>
18
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
19
</head>
20
 
21
<frameset rows="*,90" cols="*" framespacing="1" frameborder="yes" border="1" bordercolor="#FF0000">
22
    <frame src="messages.php?show=<?php echo $show; ?>" name="mainFrame">
23
 
24
  <frame src="input.php" name="bottomFrame" scrolling="NO" noresize >
25
</frameset>
26
<noframes><body>
27
 
28
</body></noframes>
29
</html>