我收到此错误...
解析错误:语法错误,意外 '{',期待'('in /home/content/s/k/y/skyview09/html/clients/Cheryl/admin/admin.php 在第122行
尝试运行具有多个条件语句的页面时(if,elseif,else)。
我想要运行的php是:
<?php
if(isset($_GET['message'])){
echo "<p><font color='#fff'>Your update was successful!</font></p>";
}
require("includes/connection.php");
$article = (isset($_GET['article'])) ? $_GET['article'] : "1";
$page = (isset($_GET['page'])) ? $_GET['page'] : "1";
$nav = (isset($_GET['nav'])) ? $_GET['nav'] : "none";
if($nav != "none"){
$sql = "SELECT id, name, url, title content FROM nav WHERE id='$nav'";
$result = $conn->query($sql) or die('Something is wrong on the test.php...Check it OUT! admin page, navigation');
if($result){
$row = $result->fetch_object();
echo '<form method="post" action="update.php">';
echo '<input type="hidden" name="id" value="' . $row->id . '" />';
echo 'Name: <input type="text" name="name" value="' . $row->name . '" /><br>';
echo 'Url: <input type="text" name="url" value="' . $row->url . '" /><br>';
echo 'Title: <input type="text" name="title" value="' . $row->title . '" /><br>';
echo '<input type="submit" name="editLinks" value="Update Content" />';
echo '</form>';
}
} elseif {
$sql = "SELECT id, content FROM articles WHERE id='$article'";
$result = $conn->query($sql) or die('Something is wrong on the test.php...Check it OUT! admin page, articles');
if($result){
$row = $result->fetch_object();
echo '<form method="post" action="update.php">';
echo '<input type="hidden" name="id" value="' . $row->id . '"';
echo '<textarea name="content" cols="50" rows="15">';
echo $row->content;
echo '</textarea>';
echo '<input type="submit" name="editContent" value="Update Content" />';
echo '</form>';
}
}
else {
$sql = "SELECT id, content FROM pages WHERE id='$page'";
$result = $conn->query($sql) or die('Something is wrong on the test.php...Check it OUT! admin page, pages');
if($result){
$row = $result->fetch_object();
echo '<form method="post" action="update.php">';
echo '<input type="hidden" name="id" value="' . $row->id . '"';
echo '<textarea name="content" cols="50" rows="15">';
echo $row->content;
echo '</textarea>';
echo '<input type="submit" name="editContent" value="Update Content" />';
echo '</form>';
}
}
?>
我希望最后一个“else”语句代替“elseif”语句。而elseif是最后一个。我尝试了一些解决方案,但没有真正有效。我不知道问题是什么。
我以为我会在SO问题中找到我的问题的解决方案,但不是他们不完全是我的问题。我很感激你的帮助。
答案 0 :(得分:3)
问题在于您的elseif
声明,您需要为elseif
提供条件。
} elseif {
应该是
} elseif(some-condition) {
我所做的就是读错了。
答案 1 :(得分:0)
你在elseif中缺少了条件。
答案 2 :(得分:0)
elseif
应包含条件。例如:
if (condition1) {
//
} elseif(condition2) {
//
}