Parse Error
Ik krijg op mijn pagina een Parse Error
Parse error: parse error in C:\xampp\htdocs\Network\contacten.php on line 182
Zoals ik weet is dat als je zon error krijgt dat je meestal een ' of ; bent vergeten maar in dit geval niet ... ik heb op line nummer 181 </form>'; staan ik sluit daar tevens een Echo af!,
en begin op line 182 een PHP Code en op line 182 staat dus de PHP Tag...
Wat is er nou fout dan ?
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
2
3
4
5
6
7
8
9
10
11
12
13
14
Line 175 tot en met 185
</table>
<table width="800" height="100" border="0" align="center">
<tr>
<td class="content"><form action="" method="POST">
<form action="" method="POST">
<input name="uitloggen" type="submit" value="Logout">
</form>';
<?php
require_once('config.php');
$result = mysql_query("SELECT * FROM contacten");
$num_rows = mysql_num_rows($result);
// Even afsluiten voor de kleurtjes
?>
</table>
<table width="800" height="100" border="0" align="center">
<tr>
<td class="content"><form action="" method="POST">
<form action="" method="POST">
<input name="uitloggen" type="submit" value="Logout">
</form>';
<?php
require_once('config.php');
$result = mysql_query("SELECT * FROM contacten");
$num_rows = mysql_num_rows($result);
// Even afsluiten voor de kleurtjes
?>
Gewijzigd op 01/01/1970 01:00:00 door Kevichill
daarna start je opeens een nieuwe
Code (php)
1
2
3
4
5
2
3
4
5
<?php
volgens mij moet je dat weghalen als het stuk ervoor een echo is
En, heb je toevallig de nieuwe xampp geinstalleerd onlangs, in de nieuwe versie staat error reporting standaard uit, dat moet je even veranderen in php.ini dan zie je alle errors weer.
volgens mij moet je dat weghalen als het stuk ervoor een echo is
En, heb je toevallig de nieuwe xampp geinstalleerd onlangs, in de nieuwe versie staat error reporting standaard uit, dat moet je even veranderen in php.ini dan zie je alle errors weer.
Gewijzigd op 01/01/1970 01:00:00 door - Ricardo -
error_reporting(E_ALL);
ini_set("display_errors", 1);
'; achter de form tag sluit een echo af die een stuk boven begint .
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
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
echo '
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
<!--
body {
background-color: #000;
}
.header {
background-image: url(images/index_03.jpg);
background-repeat: no-repeat;
border-top-style: solid;
border-right-style: solid;
border-bottom-style: solid;
border-left-style: solid;
}
.menu {
font-family: Verdana, Geneva, sans-serif;
font-size: 12px;
color: #CCC;
border-top-style: solid;
border-right-style: solid;
border-bottom-style: solid;
border-left-style: solid;
}
.content {
font-family: Verdana, Geneva, sans-serif;
font-size: 14px;
color: #FFF;
vertical-align: top;
border-top-style: solid;
border-right-style: solid;
border-bottom-style: solid;
border-left-style: solid;
}
-->
</style></head>
<body>
<table width="800" height="200" border="0" align="center">
<tr>
<td class="header"></td>
</tr>
</table>
<table width="800" border="0" align="center">
<tr>
<td class="menu">menu</td>
</tr>
</table>
<table width="800" height="100" border="0" align="center">
<tr>
<td class="content"><form action="" method="POST">
<form action="" method="POST">
<input name="uitloggen" type="submit" value="Logout">
</form>';
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
<!--
body {
background-color: #000;
}
.header {
background-image: url(images/index_03.jpg);
background-repeat: no-repeat;
border-top-style: solid;
border-right-style: solid;
border-bottom-style: solid;
border-left-style: solid;
}
.menu {
font-family: Verdana, Geneva, sans-serif;
font-size: 12px;
color: #CCC;
border-top-style: solid;
border-right-style: solid;
border-bottom-style: solid;
border-left-style: solid;
}
.content {
font-family: Verdana, Geneva, sans-serif;
font-size: 14px;
color: #FFF;
vertical-align: top;
border-top-style: solid;
border-right-style: solid;
border-bottom-style: solid;
border-left-style: solid;
}
-->
</style></head>
<body>
<table width="800" height="200" border="0" align="center">
<tr>
<td class="header"></td>
</tr>
</table>
<table width="800" border="0" align="center">
<tr>
<td class="menu">menu</td>
</tr>
</table>
<table width="800" height="100" border="0" align="center">
<tr>
<td class="content"><form action="" method="POST">
<form action="" method="POST">
<input name="uitloggen" type="submit" value="Logout">
</form>';
Edit
Opgelost :) PHP Tag moest weg heel dom van me
Gewijzigd op 01/01/1970 01:00:00 door Kevichill