PHP pagina load
maar dat de layout het zelfde blijft.
hoe doe ik dat?
zorg dan wel dat je pagina in de div past, anders valt natuurlijk je pagina uit elkaar..
blablabal.com/index.php?=blababal.php
uitkomt...... heeft iemand daar iets voor?
dan moet de link wel "blablabal.com/index.php?page=blababal.php" worden, maar goed
veiligere manieren zijn er meerdere, ik kijk bijv of ik wel een link naar het bestandje in m'n database heb staan, zo niet, wordt er gewoon gezegd dat de pagina niet beschikbaar is (anders kun je namelijk gewoon een scriptje 'uit de buitenwereld' invoegen, door "blablabal.com/index.php?page=http://www.haxors.nl/hack.php" in te voeren)
Gewijzigd op 01/01/1970 01:00:00 door Maarten Slenter
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
///////////////////////////////////
// © 2008 Wouter De Schuyter
// www.paradox-productions.net
// <[email protected]>
///////////////////////////////////
$page = $_GET['page']; // GET PAGENAME
$dir = "pages"; // DIRECTORY WITHOUT "/"
$ext = "php"; // EXTENSION WITHOUT "."
$default = "homepage"; // DEFAULT PAGE
if(!empty($page)) {
include($dir . '/' . $page . '.' .$ext);
}
else {
include($dir . '/' . $default . '.' . $ext);
}
?>
///////////////////////////////////
// © 2008 Wouter De Schuyter
// www.paradox-productions.net
// <[email protected]>
///////////////////////////////////
$page = $_GET['page']; // GET PAGENAME
$dir = "pages"; // DIRECTORY WITHOUT "/"
$ext = "php"; // EXTENSION WITHOUT "."
$default = "homepage"; // DEFAULT PAGE
if(!empty($page)) {
include($dir . '/' . $page . '.' .$ext);
}
else {
include($dir . '/' . $default . '.' . $ext);
}
?>
Regards,
Paradox
Gewijzigd op 01/01/1970 01:00:00 door Wouter De Schuyter
Warning: include(pages/index.php) [function.include]: failed to open stream: No such file or directory in /usr/export/www/vhosts/funnetwork/hosting/dutchani/index.html on line 108
Warning: include() [function.include]: Failed opening 'pages/index.php' for inclusion (include_path='.:') in /usr/export/www/vhosts/funnetwork/hosting/dutchani/index.html on line 108
Warning: include() [function.include]: Failed opening '' for inclusion (include_path='.:') in /usr/export/www/vhosts/funnetwork/hosting/dutchani/index.html on line 112
Site gemaakt
Ik maak (nog) geen gebruik van MySQL
Gewijzigd op 01/01/1970 01:00:00 door Ruben Kok
Kan het bestand niet vinden. Lijkt mij duidelijk.
Warning: include(pages/index.php.php) [function.include]: failed to open stream: No such file or directory in /usr/export/www/vhosts/funnetwork/hosting/dutchani/index.php on line 108
Warning: include() [function.include]: Failed opening 'pages/index.php.php' for inclusion (include_path='.:') in /usr/export/www/vhosts/funnetwork/hosting/dutchani/index.php on line 108
Warning: include() [function.include]: Failed opening '' for inclusion (include_path='.:') in /usr/export/www/vhosts/funnetwork/hosting/dutchani/index.php on line 112
Gewijzigd op 01/01/1970 01:00:00 door Ruben Kok
is het trouwens neit beter om require te gebruiken?
ik heb dat eens ergens gelezen...
Gewijzigd op 01/01/1970 01:00:00 door --
i.e.
standaard.php?id=102&naam=test
ik zat laatst met dat probleem en ik wist niet goed hoe het op te lossen.
je kan best met header en footer werken geloof ik.
Gewijzigd op 01/01/1970 01:00:00 door Tikkes C
Gewijzigd op 01/01/1970 01:00:00 door --
is er misschien een manier om alle GET's achter $_GET['p'] te nemen en die achter de .php te zetten in :
include 'paginas/'.$_GET['p'].'.php'
Gewijzigd op 01/01/1970 01:00:00 door --
haha ;) hoe dwaas! bedankt evert ;)
Gewijzigd op 01/01/1970 01:00:00 door --
Ruben schreef op 07.12.2008 14:42:
Warning: include(pages/index.php.php)
Klopt dat wel?
Code (php)
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
<html>
<head>
<title>.:Dreamy-Flower Design:.</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
#apDiv1 {
position:absolute;
left:28px;
top:187px;
width:165px;
height:747px;
z-index:1;
}
#apDiv2 {
position:absolute;
left:202px;
top:187px;
width:730px;
height:683px;
z-index:2;
}
#apDiv3 {
position:absolute;
left:203px;
top:885px;
width:727px;
height:50px;
z-index:3;
}
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: none;
}
a:active {
text-decoration: none;
}
-->
</style>
<script src="Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
<script src="SpryAssets/SpryCollapsiblePanel.js" type="text/javascript"></script>
<link href="SpryAssets/SpryCollapsiblePanel.css" rel="stylesheet" type="text/css">
<style type="text/css">
<!--
.style1 {color: #000000}
-->
</style>
</head>
<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<font face="Eurostile">
<!-- ImageReady Slices (Untitled-1.psd) -->
</font>
<div id="apDiv1" style="position: absolute; left: 28px; top: 187px">
<div align="center">
<div id="CollapsiblePanel1" class="CollapsiblePanel">
<div class="CollapsiblePanelTab" tabindex="0">
<font face="Eurostile" size="3">Site</font></div>
<font face="Eurostile">
<a href="index.php?" class="style1">Home</a><br>
<a href="#" class="style1">Forum</a><br>
<a href="#" class="style1">Contact</a>
</font>
<div id="CollapsiblePanel2" class="CollapsiblePanel">
<div class="CollapsiblePanelTab" tabindex="0">
<font face="Eurostile" size="3">Design</font></div>
<div class="CollapsiblePanelContent"><font face="Eurostile">
<a class="style1" href="http://dutchani.du.funpic.de/index.php?=Design/Portfolio/index.php">Portfolio</a><span class="style1"><a href="#"><br>
</a></span><a href="#" class="style1">Codering</a><span class="style1"><a href="#"><br>
</a></span><a href="#" class="style1">Projects</a>
</font>
<div id="CollapsiblePanel3" class="CollapsiblePanel">
<div class="CollapsiblePanelTab" tabindex="0">
<font face="Eurostile" size="3">Overig</font></div>
<div class="CollapsiblePanelContent"><font face="Eurostile"><a href="#" class="style1">Free Templates<br>
Free Scripts</a></font></div>
</div>
</div>
</div>
</div>
<p> </p>
</div>
</div>
<div id="apDiv2">
<font face="Eurostile">
<?php
$pages = array(
'pagina0',
'pagina1',
'pagina2'
);
if(empty($_GET['p']))
{
include 'standaard.php';
}
else
{
if(!in_array($_GET['p'], $pages))
{
echo 'Niet toegestaan!';
}
else
{
if(!file_exists('paginas/' . $_GET['p'] . '.php'))
{
echo 'Het bestand ' . $_GET['p'] . '.php is niet gevonden!';
}
else
{
include 'paginas/' . $_GET['p'] . '.php';
}
}
}
?>
<?php
include("cutenews/show_news.php");
?>
</font>
</div>
<div id="apDiv3" style="position: absolute; left: 203px; top: 880px">
<div align="center"></div>
<p align="center"><font face="Eurostile"> Dreamy-Flower design.<br>
Dreamy-Flower design, Fully made bu Dreamy-Flower design.</font></div>
<table id="Table_01" width="1000" height="1000" border="0" cellpadding="0" cellspacing="0">
<tr>
<td colspan="3">
<font face="Eurostile">
<img src="images/Home_01.gif" width="203" height="187" alt=""></font></td>
<td>
<font face="Eurostile">
<img src="images/Home_02.gif" width="746" height="187" alt=""></font></td>
<td rowspan="4">
<font face="Eurostile">
<img src="images/Home_03.gif" width="51" height="1000" alt=""></font></td>
</tr>
<tr>
<td rowspan="3">
<font face="Eurostile">
<img src="images/Home_04.gif" width="17" height="813" alt=""></font></td>
<td rowspan="2">
<font face="Eurostile">
<img src="images/Home_05.gif" width="184" height="749" alt=""></font></td>
<td rowspan="3">
<font face="Eurostile">
<img src="images/Home_06.gif" width="2" height="813" alt=""></font></td>
<td>
<font face="Eurostile">
<img src="images/Home_07.gif" width="746" height="698" alt=""></font></td>
</tr>
<tr>
<td>
<font face="Eurostile">
<img src="images/Home_08.gif" width="746" height="51" alt=""></font></td>
</tr>
<tr>
<td>
<font face="Eurostile">
<img src="images/Home_09.gif" width="184" height="64" alt=""></font></td>
<td>
<font face="Eurostile">
<img src="images/Home_10.gif" width="746" height="64" alt=""></font></td>
</tr>
</table>
<font face="Eurostile">
<!-- End ImageReady Slices -->
<script type="text/javascript">
<!--
var CollapsiblePanel1 = new Spry.Widget.CollapsiblePanel("CollapsiblePanel1");
var CollapsiblePanel2 = new Spry.Widget.CollapsiblePanel("CollapsiblePanel2");
var CollapsiblePanel3 = new Spry.Widget.CollapsiblePanel("CollapsiblePanel3");
//-->
</script>
</font>
</body>
</html>
[/CODE]
<head>
<title>.:Dreamy-Flower Design:.</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
#apDiv1 {
position:absolute;
left:28px;
top:187px;
width:165px;
height:747px;
z-index:1;
}
#apDiv2 {
position:absolute;
left:202px;
top:187px;
width:730px;
height:683px;
z-index:2;
}
#apDiv3 {
position:absolute;
left:203px;
top:885px;
width:727px;
height:50px;
z-index:3;
}
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: none;
}
a:active {
text-decoration: none;
}
-->
</style>
<script src="Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
<script src="SpryAssets/SpryCollapsiblePanel.js" type="text/javascript"></script>
<link href="SpryAssets/SpryCollapsiblePanel.css" rel="stylesheet" type="text/css">
<style type="text/css">
<!--
.style1 {color: #000000}
-->
</style>
</head>
<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<font face="Eurostile">
<!-- ImageReady Slices (Untitled-1.psd) -->
</font>
<div id="apDiv1" style="position: absolute; left: 28px; top: 187px">
<div align="center">
<div id="CollapsiblePanel1" class="CollapsiblePanel">
<div class="CollapsiblePanelTab" tabindex="0">
<font face="Eurostile" size="3">Site</font></div>
<font face="Eurostile">
<a href="index.php?" class="style1">Home</a><br>
<a href="#" class="style1">Forum</a><br>
<a href="#" class="style1">Contact</a>
</font>
<div id="CollapsiblePanel2" class="CollapsiblePanel">
<div class="CollapsiblePanelTab" tabindex="0">
<font face="Eurostile" size="3">Design</font></div>
<div class="CollapsiblePanelContent"><font face="Eurostile">
<a class="style1" href="http://dutchani.du.funpic.de/index.php?=Design/Portfolio/index.php">Portfolio</a><span class="style1"><a href="#"><br>
</a></span><a href="#" class="style1">Codering</a><span class="style1"><a href="#"><br>
</a></span><a href="#" class="style1">Projects</a>
</font>
<div id="CollapsiblePanel3" class="CollapsiblePanel">
<div class="CollapsiblePanelTab" tabindex="0">
<font face="Eurostile" size="3">Overig</font></div>
<div class="CollapsiblePanelContent"><font face="Eurostile"><a href="#" class="style1">Free Templates<br>
Free Scripts</a></font></div>
</div>
</div>
</div>
</div>
<p> </p>
</div>
</div>
<div id="apDiv2">
<font face="Eurostile">
<?php
$pages = array(
'pagina0',
'pagina1',
'pagina2'
);
if(empty($_GET['p']))
{
include 'standaard.php';
}
else
{
if(!in_array($_GET['p'], $pages))
{
echo 'Niet toegestaan!';
}
else
{
if(!file_exists('paginas/' . $_GET['p'] . '.php'))
{
echo 'Het bestand ' . $_GET['p'] . '.php is niet gevonden!';
}
else
{
include 'paginas/' . $_GET['p'] . '.php';
}
}
}
?>
<?php
include("cutenews/show_news.php");
?>
</font>
</div>
<div id="apDiv3" style="position: absolute; left: 203px; top: 880px">
<div align="center"></div>
<p align="center"><font face="Eurostile"> Dreamy-Flower design.<br>
Dreamy-Flower design, Fully made bu Dreamy-Flower design.</font></div>
<table id="Table_01" width="1000" height="1000" border="0" cellpadding="0" cellspacing="0">
<tr>
<td colspan="3">
<font face="Eurostile">
<img src="images/Home_01.gif" width="203" height="187" alt=""></font></td>
<td>
<font face="Eurostile">
<img src="images/Home_02.gif" width="746" height="187" alt=""></font></td>
<td rowspan="4">
<font face="Eurostile">
<img src="images/Home_03.gif" width="51" height="1000" alt=""></font></td>
</tr>
<tr>
<td rowspan="3">
<font face="Eurostile">
<img src="images/Home_04.gif" width="17" height="813" alt=""></font></td>
<td rowspan="2">
<font face="Eurostile">
<img src="images/Home_05.gif" width="184" height="749" alt=""></font></td>
<td rowspan="3">
<font face="Eurostile">
<img src="images/Home_06.gif" width="2" height="813" alt=""></font></td>
<td>
<font face="Eurostile">
<img src="images/Home_07.gif" width="746" height="698" alt=""></font></td>
</tr>
<tr>
<td>
<font face="Eurostile">
<img src="images/Home_08.gif" width="746" height="51" alt=""></font></td>
</tr>
<tr>
<td>
<font face="Eurostile">
<img src="images/Home_09.gif" width="184" height="64" alt=""></font></td>
<td>
<font face="Eurostile">
<img src="images/Home_10.gif" width="746" height="64" alt=""></font></td>
</tr>
</table>
<font face="Eurostile">
<!-- End ImageReady Slices -->
<script type="text/javascript">
<!--
var CollapsiblePanel1 = new Spry.Widget.CollapsiblePanel("CollapsiblePanel1");
var CollapsiblePanel2 = new Spry.Widget.CollapsiblePanel("CollapsiblePanel2");
var CollapsiblePanel3 = new Spry.Widget.CollapsiblePanel("CollapsiblePanel3");
//-->
</script>
</font>
</body>
</html>
[/CODE]
Gewijzigd op 01/01/1970 01:00:00 door --
Code (php)
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<html>
<head>
<title>.:Dreamy-Flower Design:.</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
#apDiv1 {
position:absolute;
left:28px;
top:187px;
width:165px;
height:747px;
z-index:1;
}
#apDiv2 {
position:absolute;
left:202px;
top:187px;
width:730px;
height:683px;
z-index:2;
}
#apDiv3 {
position:absolute;
left:203px;
top:885px;
width:727px;
height:50px;
z-index:3;
}
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: none;
}
a:active {
text-decoration: none;
}
-->
</style>
<script src="Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
<script src="SpryAssets/SpryCollapsiblePanel.js" type="text/javascript"></script>
<link href="SpryAssets/SpryCollapsiblePanel.css" rel="stylesheet" type="text/css">
<style type="text/css">
<!--
.style1 {color: #000000}
-->
</style>
</head>
<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<font face="Eurostile">
<!-- ImageReady Slices (Untitled-1.psd) -->
</font>
<div id="apDiv1" style="position: absolute; left: 28px; top: 187px">
<div align="center">
<div id="CollapsiblePanel1" class="CollapsiblePanel">
<div class="CollapsiblePanelTab" tabindex="0">
<font face="Eurostile" size="3">Site</font></div>
<font face="Eurostile">
<a href="index.php?" class="style1">Home</a><br>
<a href="#" class="style1">Forum</a><br>
<a class="style1" href="index.php?=mailformulier">Contact</a>
</font>
<div id="CollapsiblePanel2" class="CollapsiblePanel">
<div class="CollapsiblePanelTab" tabindex="0">
<font face="Eurostile" size="3">Design</font></div>
<div class="CollapsiblePanelContent"><font face="Eurostile">
<a class="style1" href="http://dutchani.du.funpic.de/index.php?=Design/Portfolio/index">Portfolio</a><span class="style1"><a href="#"><br>
</a></span><a href="#" class="style1">Codering</a><span class="style1"><a href="#"><br>
</a></span><a href="#" class="style1">Projects</a>
</font>
<div id="CollapsiblePanel3" class="CollapsiblePanel">
<div class="CollapsiblePanelTab" tabindex="0">
<font face="Eurostile" size="3">Overig</font></div>
<div class="CollapsiblePanelContent"><font face="Eurostile"><a href="#" class="style1">Free Templates<br>
Free Scripts</a></font></div>
</div>
</div>
</div>
</div>
<p> </p>
</div>
</div>
<div id="apDiv2">
<font face="Eurostile">
<?
include("cutenews/show_news.php");
?>
<?
if (!$_GET['page']) {
include ('index.php');
}
elseif (isset($_GET['page'])) {
if(file_exists($_GET['page'] . '.php')) {
include ($_GET['page'] . '.php');
}
else {
include('error.php');
}
}
else {
include('error.php');
}
?>
</font>
</div>
<div id="apDiv3" style="position: absolute; left: 203px; top: 880px">
<div align="center"></div>
<p align="center"><font face="Eurostile"> Dreamy-Flower design.<br>
Dreamy-Flower design, Fully made bu Dreamy-Flower design.</font></div>
<table id="Table_01" width="1000" height="1000" border="0" cellpadding="0" cellspacing="0">
<tr>
<td colspan="3">
<font face="Eurostile">
<img src="images/Home_01.gif" width="203" height="187" alt=""></font></td>
<td>
<font face="Eurostile">
<img src="images/Home_02.gif" width="746" height="187" alt=""></font></td>
<td rowspan="4">
<font face="Eurostile">
<img src="images/Home_03.gif" width="51" height="1000" alt=""></font></td>
</tr>
<tr>
<td rowspan="3">
<font face="Eurostile">
<img src="images/Home_04.gif" width="17" height="813" alt=""></font></td>
<td rowspan="2">
<font face="Eurostile">
<img src="images/Home_05.gif" width="184" height="749" alt=""></font></td>
<td rowspan="3">
<font face="Eurostile">
<img src="images/Home_06.gif" width="2" height="813" alt=""></font></td>
<td>
<font face="Eurostile">
<img src="images/Home_07.gif" width="746" height="698" alt=""></font></td>
</tr>
<tr>
<td>
<font face="Eurostile">
<img src="images/Home_08.gif" width="746" height="51" alt=""></font></td>
</tr>
<tr>
<td>
<font face="Eurostile">
<img src="images/Home_09.gif" width="184" height="64" alt=""></font></td>
<td>
<font face="Eurostile">
<img src="images/Home_10.gif" width="746" height="64" alt=""></font></td>
</tr>
</table>
<font face="Eurostile">
<!-- End ImageReady Slices -->
<script type="text/javascript">
<!--
var CollapsiblePanel1 = new Spry.Widget.CollapsiblePanel("CollapsiblePanel1");
var CollapsiblePanel2 = new Spry.Widget.CollapsiblePanel("CollapsiblePanel2");
var CollapsiblePanel3 = new Spry.Widget.CollapsiblePanel("CollapsiblePanel3");
//-->
</script>
</font>
</body>
</html>
[/CODE]
<head>
<title>.:Dreamy-Flower Design:.</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
#apDiv1 {
position:absolute;
left:28px;
top:187px;
width:165px;
height:747px;
z-index:1;
}
#apDiv2 {
position:absolute;
left:202px;
top:187px;
width:730px;
height:683px;
z-index:2;
}
#apDiv3 {
position:absolute;
left:203px;
top:885px;
width:727px;
height:50px;
z-index:3;
}
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: none;
}
a:active {
text-decoration: none;
}
-->
</style>
<script src="Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
<script src="SpryAssets/SpryCollapsiblePanel.js" type="text/javascript"></script>
<link href="SpryAssets/SpryCollapsiblePanel.css" rel="stylesheet" type="text/css">
<style type="text/css">
<!--
.style1 {color: #000000}
-->
</style>
</head>
<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<font face="Eurostile">
<!-- ImageReady Slices (Untitled-1.psd) -->
</font>
<div id="apDiv1" style="position: absolute; left: 28px; top: 187px">
<div align="center">
<div id="CollapsiblePanel1" class="CollapsiblePanel">
<div class="CollapsiblePanelTab" tabindex="0">
<font face="Eurostile" size="3">Site</font></div>
<font face="Eurostile">
<a href="index.php?" class="style1">Home</a><br>
<a href="#" class="style1">Forum</a><br>
<a class="style1" href="index.php?=mailformulier">Contact</a>
</font>
<div id="CollapsiblePanel2" class="CollapsiblePanel">
<div class="CollapsiblePanelTab" tabindex="0">
<font face="Eurostile" size="3">Design</font></div>
<div class="CollapsiblePanelContent"><font face="Eurostile">
<a class="style1" href="http://dutchani.du.funpic.de/index.php?=Design/Portfolio/index">Portfolio</a><span class="style1"><a href="#"><br>
</a></span><a href="#" class="style1">Codering</a><span class="style1"><a href="#"><br>
</a></span><a href="#" class="style1">Projects</a>
</font>
<div id="CollapsiblePanel3" class="CollapsiblePanel">
<div class="CollapsiblePanelTab" tabindex="0">
<font face="Eurostile" size="3">Overig</font></div>
<div class="CollapsiblePanelContent"><font face="Eurostile"><a href="#" class="style1">Free Templates<br>
Free Scripts</a></font></div>
</div>
</div>
</div>
</div>
<p> </p>
</div>
</div>
<div id="apDiv2">
<font face="Eurostile">
<?
include("cutenews/show_news.php");
?>
<?
if (!$_GET['page']) {
include ('index.php');
}
elseif (isset($_GET['page'])) {
if(file_exists($_GET['page'] . '.php')) {
include ($_GET['page'] . '.php');
}
else {
include('error.php');
}
}
else {
include('error.php');
}
?>
</font>
</div>
<div id="apDiv3" style="position: absolute; left: 203px; top: 880px">
<div align="center"></div>
<p align="center"><font face="Eurostile"> Dreamy-Flower design.<br>
Dreamy-Flower design, Fully made bu Dreamy-Flower design.</font></div>
<table id="Table_01" width="1000" height="1000" border="0" cellpadding="0" cellspacing="0">
<tr>
<td colspan="3">
<font face="Eurostile">
<img src="images/Home_01.gif" width="203" height="187" alt=""></font></td>
<td>
<font face="Eurostile">
<img src="images/Home_02.gif" width="746" height="187" alt=""></font></td>
<td rowspan="4">
<font face="Eurostile">
<img src="images/Home_03.gif" width="51" height="1000" alt=""></font></td>
</tr>
<tr>
<td rowspan="3">
<font face="Eurostile">
<img src="images/Home_04.gif" width="17" height="813" alt=""></font></td>
<td rowspan="2">
<font face="Eurostile">
<img src="images/Home_05.gif" width="184" height="749" alt=""></font></td>
<td rowspan="3">
<font face="Eurostile">
<img src="images/Home_06.gif" width="2" height="813" alt=""></font></td>
<td>
<font face="Eurostile">
<img src="images/Home_07.gif" width="746" height="698" alt=""></font></td>
</tr>
<tr>
<td>
<font face="Eurostile">
<img src="images/Home_08.gif" width="746" height="51" alt=""></font></td>
</tr>
<tr>
<td>
<font face="Eurostile">
<img src="images/Home_09.gif" width="184" height="64" alt=""></font></td>
<td>
<font face="Eurostile">
<img src="images/Home_10.gif" width="746" height="64" alt=""></font></td>
</tr>
</table>
<font face="Eurostile">
<!-- End ImageReady Slices -->
<script type="text/javascript">
<!--
var CollapsiblePanel1 = new Spry.Widget.CollapsiblePanel("CollapsiblePanel1");
var CollapsiblePanel2 = new Spry.Widget.CollapsiblePanel("CollapsiblePanel2");
var CollapsiblePanel3 = new Spry.Widget.CollapsiblePanel("CollapsiblePanel3");
//-->
</script>
</font>
</body>
</html>
[/CODE]
Gewijzigd op 01/01/1970 01:00:00 door Ruben Kok