outblank
ik was bezig aan een pagina en ik kreeg ineens een outblank.Ik heb alles gedaan wat jullie vorige keer hebben gezegd maar toch blijft die outblank :) kan er is iemand naar kijken aub ?
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
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
<?
ini_set('display_errors', 'On');
error_reporting(E_ALL);
include("include/session.php");
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>World of Warcraft Fansite</title>
<link href="css/style1.css" rel="stylesheet" type="text/css">
<!-- Change the next line to green.css, yellow.css, or red.css -->
<link href="css/blue_tex.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="ev_bg"><div id="everything">
<div id="header">
<h1>Elite Slayers at War</h1>
</div>
<div id="middle">
<div id="left_column">
<div id="navigation">
<?
if($session->logged_in){
echo "<a href=\"userinfo.php?user=$session->username\">My Account</a>"
."<a href=\"index.php?pagina=useredit.php\">Edit Account</a>]"
."<a href=\"index.php?pagina=pm_inbox.php\">Mailbox</a>]"
."<a href=\"index.php?pagina=pm_new.php\">Send Message</a>]"
."<a href=\"index.php?pagina=pm_thrash.php\">Thrash bin</a>"
."<a href=\"index.php?pagina=pm_option.php\">PM Options</a>";
if($session->isAdmin()){
echo "<a href=\"admin/admin.php\">Admin Center</a>";
}
echo "<a href=\"process.php\">Logout</a>";
}
else{
echo "<a href="index.php?pagina=index.php">Home</a><br>
<a href="index.php?pagina=register.php">Register</a><br>
<a href="index.php?pagina=screenshots.php">Screenshots</a><br>
<a href="index.php?pagina=links.php">Links</a><br>
<a href="index.php?pagina=contact.php">contact</a><br>
<a href="index.php?pagina=login.php">Login</a><br>";
}
?>
</div>
<div id="more_information">
<div class="box">Poll:</div>
<div class="box">Features:</div>
<div class="box">Links:</div>
</div>
</div>
<div id="middle_column" class="two_column">
<div class="date_break"></div>
<div class="post">
<div class="post_body">
<?php
if ($pagina == "userinfo")
{
include "userinfo.php?user=$session->username";
}
if ($pagina == "useredit")
{
include "useredit.php";
}
if ($pagina == "pm_inbox")
{
include "pm_inbox.php";
}
if ($pagina == "pm_new")
{
include "pm_new.php";
}
if ($pagina == "pm_trash")
{
include "pm_trash.php";
}
if ($pagina == "pm_option")
{
include "pm_option.php";
}
if ($pagina == "login")
{
include "login.php";
}
?>
</div>
</div>
</div>
<div id="footer">
<span class="copyright">World of Warcraft® and Blizzard Entertainment® are all trademarks or registered trademarks of Blizzard Entertainment in the United States and/or other countries. <br> These terms and all related materials, logos, and images are copyright © Blizzard Entertainment. This site is in no way associated with or endorsed by Blizzard Entertainment®.</span></div>
</div></div>
</body>
</html>
ini_set('display_errors', 'On');
error_reporting(E_ALL);
include("include/session.php");
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>World of Warcraft Fansite</title>
<link href="css/style1.css" rel="stylesheet" type="text/css">
<!-- Change the next line to green.css, yellow.css, or red.css -->
<link href="css/blue_tex.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="ev_bg"><div id="everything">
<div id="header">
<h1>Elite Slayers at War</h1>
</div>
<div id="middle">
<div id="left_column">
<div id="navigation">
<?
if($session->logged_in){
echo "<a href=\"userinfo.php?user=$session->username\">My Account</a>"
."<a href=\"index.php?pagina=useredit.php\">Edit Account</a>]"
."<a href=\"index.php?pagina=pm_inbox.php\">Mailbox</a>]"
."<a href=\"index.php?pagina=pm_new.php\">Send Message</a>]"
."<a href=\"index.php?pagina=pm_thrash.php\">Thrash bin</a>"
."<a href=\"index.php?pagina=pm_option.php\">PM Options</a>";
if($session->isAdmin()){
echo "<a href=\"admin/admin.php\">Admin Center</a>";
}
echo "<a href=\"process.php\">Logout</a>";
}
else{
echo "<a href="index.php?pagina=index.php">Home</a><br>
<a href="index.php?pagina=register.php">Register</a><br>
<a href="index.php?pagina=screenshots.php">Screenshots</a><br>
<a href="index.php?pagina=links.php">Links</a><br>
<a href="index.php?pagina=contact.php">contact</a><br>
<a href="index.php?pagina=login.php">Login</a><br>";
}
?>
</div>
<div id="more_information">
<div class="box">Poll:</div>
<div class="box">Features:</div>
<div class="box">Links:</div>
</div>
</div>
<div id="middle_column" class="two_column">
<div class="date_break"></div>
<div class="post">
<div class="post_body">
<?php
if ($pagina == "userinfo")
{
include "userinfo.php?user=$session->username";
}
if ($pagina == "useredit")
{
include "useredit.php";
}
if ($pagina == "pm_inbox")
{
include "pm_inbox.php";
}
if ($pagina == "pm_new")
{
include "pm_new.php";
}
if ($pagina == "pm_trash")
{
include "pm_trash.php";
}
if ($pagina == "pm_option")
{
include "pm_option.php";
}
if ($pagina == "login")
{
include "login.php";
}
?>
</div>
</div>
</div>
<div id="footer">
<span class="copyright">World of Warcraft® and Blizzard Entertainment® are all trademarks or registered trademarks of Blizzard Entertainment in the United States and/or other countries. <br> These terms and all related materials, logos, and images are copyright © Blizzard Entertainment. This site is in no way associated with or endorsed by Blizzard Entertainment®.</span></div>
</div></div>
</body>
</html>
Je ziet het hier al aan de kleurtjes, op de regels 42 tot en met 47 vergeet je de HTML quotes te escapen. Op de regels 30 t/m 35 doe je het wel goed.
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
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
<?
ini_set('display_errors', 'On');
error_reporting(E_ALL);
include('include/session.php');
?>
<!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.01 Transitional//EN'
'http://www.w3.org/TR/html4/loose.dtd'>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=utf-8' />
<title>World of Warcraft Fansite</title>
<link href='css/style1.css' rel='stylesheet' type='text/css'>
<!-- Change the next line to green.css, yellow.css, or red.css -->
<link href='css/blue_tex.css' rel='stylesheet' type='text/css'>
</head>
<body>
<div id='ev_bg'><div id='everything'>
<div id='header'>
<h1>Elite Slayers at War</h1>
</div>
<div id='middle'>
<div id='left_column'>
<div id='navigation'>
<?
if($session->logged_in){
echo '<a href=\'userinfo.php?user=$session->username\'>My Account</a>'
.'<a href=\'index.php?pagina=useredit.php\'>Edit Account</a>]'
.'<a href=\'index.php?pagina=pm_inbox.php\'>Mailbox</a>]'
.'<a href=\'index.php?pagina=pm_new.php\'>Send Message</a>]'
.'<a href=\'index.php?pagina=pm_thrash.php\'>Thrash bin</a>'
.'<a href=\'index.php?pagina=pm_option.php\'>PM Options</a>';
if($session->isAdmin()){
echo '<a href=\'admin/admin.php\'>Admin Center</a>';
}
echo '<a href=\'process.php\'>Logout</a>';
}
else{
echo '<a href=\'index.php?pagina=index.php\'>Home</a><br>'
.'<a href=\'index.php?pagina=register.php\'>Register</a><br>'
.'<a href=\'index.php?pagina=screenshots.php\'>Screenshots</a><br>'
.'<a href=\'index.php?pagina=links.php\'>Links</a><br>'
.'<a href=\'index.php?pagina=contact.php\'>contact</a><br>'
.'<a href=\'index.php?pagina=login.php\'>Login</a><br>';
}
?>
</div>
<div id='more_information'>
<div class='box'>Poll:</div>
<div class='box'>Features:</div>
<div class='box'>Links:</div>
</div>
</div>
<div id='middle_column' class='two_column'>
<div class='date_break'></div>
<div class='post'>
<div class='post_body'>
<?php
if(is_file($_GET['pagina'].'.php) && file_exists($_GET['pagina'].'.php'))
{
include($_GET['pagina'].'.php');
}
else
{
echo 'De pagina kon niet gevonden worden';
}
?>
</div>
</div>
</div>
<div id='footer'>
<span class='copyright'>World of Warcraft® and Blizzard Entertainment® are all trademarks or registered trademarks of Blizzard Entertainment in the United States and/or other countries. <br> These terms and all related materials, logos, and images are copyright © Blizzard Entertainment. This site is in no way associated with or endorsed by Blizzard Entertainment®.</span></div>
</div></div>
</body>
</html>
ini_set('display_errors', 'On');
error_reporting(E_ALL);
include('include/session.php');
?>
<!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.01 Transitional//EN'
'http://www.w3.org/TR/html4/loose.dtd'>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=utf-8' />
<title>World of Warcraft Fansite</title>
<link href='css/style1.css' rel='stylesheet' type='text/css'>
<!-- Change the next line to green.css, yellow.css, or red.css -->
<link href='css/blue_tex.css' rel='stylesheet' type='text/css'>
</head>
<body>
<div id='ev_bg'><div id='everything'>
<div id='header'>
<h1>Elite Slayers at War</h1>
</div>
<div id='middle'>
<div id='left_column'>
<div id='navigation'>
<?
if($session->logged_in){
echo '<a href=\'userinfo.php?user=$session->username\'>My Account</a>'
.'<a href=\'index.php?pagina=useredit.php\'>Edit Account</a>]'
.'<a href=\'index.php?pagina=pm_inbox.php\'>Mailbox</a>]'
.'<a href=\'index.php?pagina=pm_new.php\'>Send Message</a>]'
.'<a href=\'index.php?pagina=pm_thrash.php\'>Thrash bin</a>'
.'<a href=\'index.php?pagina=pm_option.php\'>PM Options</a>';
if($session->isAdmin()){
echo '<a href=\'admin/admin.php\'>Admin Center</a>';
}
echo '<a href=\'process.php\'>Logout</a>';
}
else{
echo '<a href=\'index.php?pagina=index.php\'>Home</a><br>'
.'<a href=\'index.php?pagina=register.php\'>Register</a><br>'
.'<a href=\'index.php?pagina=screenshots.php\'>Screenshots</a><br>'
.'<a href=\'index.php?pagina=links.php\'>Links</a><br>'
.'<a href=\'index.php?pagina=contact.php\'>contact</a><br>'
.'<a href=\'index.php?pagina=login.php\'>Login</a><br>';
}
?>
</div>
<div id='more_information'>
<div class='box'>Poll:</div>
<div class='box'>Features:</div>
<div class='box'>Links:</div>
</div>
</div>
<div id='middle_column' class='two_column'>
<div class='date_break'></div>
<div class='post'>
<div class='post_body'>
<?php
if(is_file($_GET['pagina'].'.php) && file_exists($_GET['pagina'].'.php'))
{
include($_GET['pagina'].'.php');
}
else
{
echo 'De pagina kon niet gevonden worden';
}
?>
</div>
</div>
</div>
<div id='footer'>
<span class='copyright'>World of Warcraft® and Blizzard Entertainment® are all trademarks or registered trademarks of Blizzard Entertainment in the United States and/or other countries. <br> These terms and all related materials, logos, and images are copyright © Blizzard Entertainment. This site is in no way associated with or endorsed by Blizzard Entertainment®.</span></div>
</div></div>
</body>
</html>
gebruik een editor die de code in kleur laat zien (net zoals je hierboven ziet)
Je vergeet een '
Gewijzigd op 01/01/1970 01:00:00 door TJVB tvb
Domme vraag: Wat is outblank?
Oudtwents voor 'oude plank' , ook wel 'olde planke' .
nu krijg ik dit
dit moet zijn:
wes schreef op 31.03.2008 14:49:
Ah, nu snap ik hem! Een bord voor je kop, zeg dat dan gewoon, dan snap ik het ook.Oudtwents voor 'oude plank' , ook wel 'olde planke' .
Ik ben geen 18 meer, hou daar s.v.p. wel even rekening mee.
bas dat heb ik ook gedaan ze hebben dat al gezegd dus maar nu krijg ik die fout
Nicolas schreef op 31.03.2008 14:51:
Dit betekent dat $_GET['pagina'] niet bestaat, zie de url die je gebruikt om jouw script aan te roepen. Voordat je dus met $_GET['pagina'] aan de slag gaat, zul je eerst moeten controleren of deze wel bestaat. isset() doet wonderen.Notice: Undefined index: pagina in /home/vol3/byethost13.com/b13_1537919/htdocs/index.php on line 64
nu krijg ik dit
nu krijg ik dit
Verder blijf ik me afvragen wat je met "outblank" gedoeld, snap er nog steeds geen hout van.
about:blank wordt er denk ik bedoeld.
Gewoon een lege witte pagina.
Heb ik het goed? Het woord van 2008 mannen. Outblank :)
@Erik, je was me voor :)
Gewijzigd op 01/01/1970 01:00:00 door Bas Matthee
@Server: Toon geen foutmeldingen
resultaat: blanco pagina
Mijn vraag: Wat is dan nog het probleem? Dit wilde je toch? Mission completed.
Moet dat niet
ini_set('display_errors', 1);
zijn?
On, 1 of true, allemaal 1 pot nat. Helaas wil menig programmeur zijn fouten niet zien en worden deze keurig met error_reporting() onderdrukt. E_ALL wordt zelden gebruikt en wanneer deze tóch wordt gebruikt, worden de notices weer onderdrukt... Tja, sta dan niet gek te kijken dat debuggen een ramp is, daar vraag je om.
Tijdens het bouwen en testen van je systemen wil je alle mogelijke en onmogelijke meldingen op je scherm of in een logboek hebben, dan kun je er wat aan doen. In productie wil je niets op het scherm hebben en alleen het logboek vullen, dan kun je er later bij een onderhoudsrelease wat aan gaan doen.