Subversion Repositories personal-webbase

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 daniel-mar 1
<?php
2
 
3
require 'includes/main.inc.php';
4
require 'includes/modulinit.inc.php'; // Für Loginanfragen etc.
5
 
6
// Testen, ob Cookies akzeptiert werden
7
$testCookie = md5(uniqid(mt_rand(), true));
8
wbSetCookie('cookieAcceptingTest', $testCookie, 0);
9
 
10
?>
11
 
12
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN">
13
 
14
<html>
15
 
16
<head>
17
         <title>ViaThinkSoft Personal WebBase</title>
18
         <meta name="robots" content="noindex">
19
</head>
20
 
21
<frameset rows="72,*" noresize border="0" frameborder="0" framespacing="0">
22
        <frame src="caption.php" framespacing="0" border="0" frameborder="0" marginheight="0" marginwidth="0" name="Caption" scrolling="no" noresize>
23
        <frameset cols="200,*" noresize border="0" frameborder="0" framespacing="0" noresize>
24
                <frameset rows="*,14" noresize border="0" frameborder="0" framespacing="0" noresize>
25
                        <frame src="navigation.php<?php
26
                                if ($_SERVER['QUERY_STRING'] != '') echo '?'.$_SERVER['QUERY_STRING'];
27
                        ?>" framespacing="0" frameborder="0" marginheight="0" marginwidth="0" name="Navigation" scrolling="no" noresize>
28
                        <frame src="scrolling.php" framespacing="0" border="0" name="EmptyFrame1" scrolling="no" noresize>
29
                </frameset>
30
                <frameset rows="*,14" noresize border="0" frameborder="0" framespacing="0" noresize>
31
                        <frameset cols="*,10" noresize border="0" frameborder="0" framespacing="0" noresize>
32
                                <frame src="empty.php" framespacing="0" frameborder="0" marginheight="5" marginwidth="7" name="Content" scrolling="auto" noresize>
33
                                <frame src="empty.php" framespacing="0" frameborder="0" marginheight="0" marginwidth="0" name="EmptyFrame3" scrolling="no" noresize>
34
                        </frameset>
35
                        <frame src="bottom.php?testCookie=<?php echo $testCookie; ?>" framespacing="0" frameborder="0" marginheight="0" marginwidth="0" name="EmptyFrame2" scrolling="no" noresize>
36
                </frameset>
37
        </frameset>
38
</frameset>
39
 
40
</html>