我正在建立一个博客。我想要索引页面的一个标题和每个帖子页面的不同标题。所以我做了这样的代码。这是最好的方法吗?
<title><?php
$posttitle = $_GET["article"];
if (empty($posttitle)) {
print $blog_title;
}
else {
$result = mysqli_query($con,"SELECT * FROM post WHERE postlink='$posttitle' ");
while($row = mysqli_fetch_array($result))
{
print $row['title'];
};
};
?></title>
这段代码对我有用。但我不认为每次都检查我们是否正在查看文章是个好主意。