1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<?php
$header = rand(1,4);
include("config.inc.php");
$verbindung=mysql_connect($dbhost,$dbuser,$dbpasswd);
?>
<html>
<head>
<title>Cho Taekwondo Schule Nunningen</title>
<link href="style/style.css" rel="stylesheet">
<meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta name="keywords" content=" ">
<meta name="content-language" content="de">
</head>
<body>
<table class='design' align='center'>
<tr>
<td colspan='3' height='200'><img src='style/header<?php echo $header; ?>.jpg'></td>
</tr>
<tr>
<td width='140' valign='top'><?php include("menu.php"); ?></td>
<td width='10'> </td>
<td width='650' valign='top'><?php include("datein.php"); include("inhalt.php"); ?></td>
</tr>
</table>
</body>
</html> |