Unexptected $ in file on line 85
kan iemand mij vertellen hoe ik dit moet oplossen?
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Admin - Mobstar Webdesign services</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" href="admin.css" type="text/css">
</head>
<body>
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
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
<?
// Inlog Scherm
if(!isset($_SESSION["login"])){
if(isset($_POST["login"])){
if($_POST["naam"] == "*********" && $_POST["wachtwoord"] == "*****"){
$_SESSION["login"] = "true";
}else{
echo "Invalid login....";
}
}else{
echo "
<form method=\"post\">
<table width=\"30%\" border=\"0\">
<tr>
<td scope=\"col\"><b>Naam:</b></td>
<td scope=\"col'\"><input type=\"text\" name=\"naam\"></td>
</tr>
<tr>
<td><b>Wachtwoord:</b></td>
<td><input type=\"password\" name=\"wachtwoord\"></td>
</tr>
<tr>
<td> </td>
<td><input type=\"submit\" name=\"login\" value=\"Login\"></td>
</tr>
</table>
<p> </p>
<p> <br>
<br>
<br>
</p>
</form>";
}
}
// Einde inlogscherm
// Controle voor inloggen
if($_SESSION["login"] == "true"){
?>
// Inlog Scherm
if(!isset($_SESSION["login"])){
if(isset($_POST["login"])){
if($_POST["naam"] == "*********" && $_POST["wachtwoord"] == "*****"){
$_SESSION["login"] = "true";
}else{
echo "Invalid login....";
}
}else{
echo "
<form method=\"post\">
<table width=\"30%\" border=\"0\">
<tr>
<td scope=\"col\"><b>Naam:</b></td>
<td scope=\"col'\"><input type=\"text\" name=\"naam\"></td>
</tr>
<tr>
<td><b>Wachtwoord:</b></td>
<td><input type=\"password\" name=\"wachtwoord\"></td>
</tr>
<tr>
<td> </td>
<td><input type=\"submit\" name=\"login\" value=\"Login\"></td>
</tr>
</table>
<p> </p>
<p> <br>
<br>
<br>
</p>
</form>";
}
}
// Einde inlogscherm
// Controle voor inloggen
if($_SESSION["login"] == "true"){
?>
<h2>Services admin</h2>
<p><a href="?x=update">Update Service </a></p>
<p>
Code (php)
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
<? if($_GET['x'] == 'update'){
echo("
<a href=\"edit_services.php?x=update&id4=Webdesign\">Webdesign</a><br>
<a href=\"edit_services.php?x=update&id4=webimg\">Webimg</a><br>
<a href=\"edit_services.php?x=update&id4=flashanim\">Flash</a><br>
<a href=\"edit_services.php?x=update&id4=normalimg\">Standard</a><br>
<a href=\"edit_services.php?x=update&id4=webhosting\">Webhosting</a>");
$get = 'SELECT * FROM services WHERE id4 = "'.$_GET['id4'].'"';
$resultaat = mysql_query($get);
$record = mysql_fetch_assoc($resultaat);
?>
echo("
<a href=\"edit_services.php?x=update&id4=Webdesign\">Webdesign</a><br>
<a href=\"edit_services.php?x=update&id4=webimg\">Webimg</a><br>
<a href=\"edit_services.php?x=update&id4=flashanim\">Flash</a><br>
<a href=\"edit_services.php?x=update&id4=normalimg\">Standard</a><br>
<a href=\"edit_services.php?x=update&id4=webhosting\">Webhosting</a>");
$get = 'SELECT * FROM services WHERE id4 = "'.$_GET['id4'].'"';
$resultaat = mysql_query($get);
$record = mysql_fetch_assoc($resultaat);
?>
</p>
<form name="form1" method="post" action="edit_services.php?update=true">
<p>
<input name="id4" type="text" id="id4" value="" readonly="true">
</p>
<p>
<textarea name="descr" id="descr"></textarea>
</p>
<p>
<input name="update" type="submit" id="update" value="update">
</p>
</form>
Code (php)
1
2
3
4
2
3
4
<? if($_GET['update'] == 'true' && $_SESSION['login'] == 'true' && $_SERVER['REQUEST_METHOD'] == 'post'){
mysql_query('UPDATE `services` SET `descr` = "'.$_POST['descr'].'" WHERE `id4` = "'.$_POST['id4'].'"');
}
?>
mysql_query('UPDATE `services` SET `descr` = "'.$_POST['descr'].'" WHERE `id4` = "'.$_POST['id4'].'"');
}
?>
</body>
</html>
hij geeft een error op lijn 85 dat is dus het allerlaatste regel.
Zend Studio geeft aan dat het een "Unexpected end of file" is, maar hoe kan ik dat oplossen?
Gewijzigd op 14/06/2005 20:10:00 door The Pope
Vast en zeker een } vergeten te plaatsen.
inderdaad, ergens een } vergeten, of twee.. succes moet wel lukken..