Subversion Repositories personal-webbase

Rev

Rev 3 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 daniel-mar 1
<?php
2
 
3
require 'includes/main.inc.php';
4
 
5
?><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN">
6
 
7
<html>
8
<head>
3 daniel-mar 9
   <title>ViaThinkSoft Personal WebBase</title>
2 daniel-mar 10
</head>
11
 
12
<?php
13
 
14
echo '<frameset rows="72,*" noresize border="0" frameborder="0" framespacing="0">
15
  <frame src="ueberschrift.php" framespacing="0" border="0" frameborder="0" marginheight="0" marginwidth="0" name="Caption" scrolling="no" noresize>
16
  <frameset cols="200,*,10" noresize border="0" frameborder="0" framespacing="0" noresize>
17
    <frameset rows="*,14" noresize border="0" frameborder="0" framespacing="0" noresize>
18
      <frame src="navigation.php';
19
 
20
if ($_SERVER["QUERY_STRING"] != '') echo '?'.$_SERVER["QUERY_STRING"];
21
 
22
echo '" framespacing="0" frameborder="0" marginheight="0" marginwidth="0" name="Navigation" scrolling="no" noresize>
23
      <frame src="leer.php?mitscrolling=yes" framespacing="0" border="0" name="LeerFrame1" scrolling="no" noresize>
24
    </frameset>
25
    <frameset rows="*,10" noresize border="0" frameborder="0" framespacing="0" noresize>
26
      <frame src="leer.php" framespacing="0" frameborder="0" marginheight="5" marginwidth="7" name="Inhalt" scrolling="auto" noresize>
27
      <frame src="leer.php" framespacing="0" frameborder="0" marginheight="0" marginwidth="0" name="LeerFrame1" scrolling="no" noresize>
28
    </frameset>
29
    <frame src="leer.php" framespacing="0" frameborder="0" marginheight="0" marginwidth="0" name="LeerFrame1" scrolling="no" noresize>
30
  </frameset>
31
</frameset>
32
 
33
</html>';
34
 
3 daniel-mar 35
?>