gpt4 book ai didi

php - 删除页面不起作用

转载 作者:行者123 更新时间:2023-11-29 06:47:59 25 4
gpt4 key购买 nike

<分区>

我正在创建一个 cms,并且已经完美地设置了除删除页面之外的所有页面。

我的 delete.php 有这段代码:

<?php

session_start();

include_once('../include/connection.php');
include_once('../include/article.php');

$article = new Article;

if (isset($_SESSION['logged_in'])) {
$articles = $article->fetch_all();
?>
<html>
<head>
<title>testing</title>
<link rel="stylesheet" href="../style.css" />
</head>

<body>
<div class="container">
<a href="index.php" id="logo">CMS</a>

<br /><br />

<form action="delete.php" method="get">
<select onchange="this.form.submit();">
<?php foreach ($articles as $article){ ?>
<option value="<?php echo $article['article_id']; ?>"><?php echo $article['article_title']; ?></option>
<php } ?>
</select>
</form>

</div>
</body>
</html>
<?php
} else {
header('Location: index.php');

}
?>

但在我的错误日志中它告诉我:

PHP Parse error: syntax error, unexpected T_ELSE in/delete.php on line 37

第 37 行是 "} else {"请有人告诉我我哪里出错了?

谢谢。

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com