Dat lijkt me de netste oplossing inderdaad.
De huidige html pagina stelt niet veel voor, maar deze opbouwen in php als php-noob zal me niet meevallen.
Ik ga even wat tutorials zoeken en kijken van Dreamweaver me te bieden heeft.
De huidige code van de index.html:
code:
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<head>
<title>Privé</title>
<style type="text/css">
<!--
.style1 {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 16px;
font-weight: bold;
color: #FFFFFF;
}
.style2 {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: small;
font-weight: bold;
color: #CCCCCC;
}
.style3 {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: x-small;
font-weight: bold;
color: #CCCCCC;
}
body {
background-color: #003366;
}
iframe {
overflow-x: hidden;
}
a:link {
text-decoration: none;
color: #CCCCCC;
}
a:visited {
text-decoration: none;
color: #CCCCCC;
}
a:hover {
text-decoration: none;
color: #FF0000;
}
a:active {
text-decoration: none;
color: #CCCCCC;
}
-->
</style>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<table width="800" align="center">
<tr>
<td><span class="style1">1</span><span class="style2"><a href="1.html"> (klik hier voor alleen 1)</a></span></td>
<td class="style2"><div align="right"><a href="1.txt" target="_blank" class="style3">Logfile 1 </a></div></td>
</tr>
<tr>
<td valign="top" colspan="2"><iframe src="1.html" height="250" width="100%" frameborder="0" scrolling="yes">
<p>Your browser does not support inline frames or is currently configured not to display inline frames.</p>
</iframe>
<br></td>
</tr>
<tr>
<td><span class="style1">2</span><span class="style2"><a href="2.html"> (klik hier voor alleen 2)</a></span></td>
<td class="style2"><div align="right"><a href="2.txt" target="_blank" class="style3">Logfile 2 </a></div></td>
</tr>
<tr>
<td valign="top" colspan="2">
<iframe src="2.html" height="250" width="100%" frameborder="0" scrolling="yes">
<p>Your browser does not support inline frames or is currently configured not to display inline frames.</p>
</iframe>
<br></td>
</tr>
<tr>
<td colspan="2"><span class="style1">3</span><span class="style2"><a href="3.html"> (klik hier voor alleen 3)</a></span></td>
</tr>
<tr>
<td valign="top" colspan="2">
<iframe src="3.html" height="250" width="100%" frameborder="0" scrolling="yes">
<p>Your browser does not support inline frames or is currently configured not to display inline frames.</p>
</iframe> </td>
</tr>
</table>
</body>
</html> |
EDIT:
Ik vrees dat ik het al op moet geven. Op de websites die in dit topic gelinkt worden, wordt zo in vakjargon geschreven, dat ik geen idee heb waar het over gaat.
PHP is echt nieuw voor mij.
[
Voor 73% gewijzigd door
F4T4L_3RR0R op 14-01-2008 00:01
]