我有一个包含数据库查询的页面,如果URL中有一个县,那么我会运行另一个查询。
<head>
<title>Query results in $county</title>
</head>
...
if (isset($county)) {
// If county is set
$sth = $conn->prepare("SELECT * FROM directory WHERE user_active != '' AND County = :county");
} else {
// Run another query
}
如果设置了县,我想在页面标题中添加县。这可能吗?
答案 0 :(得分:1)
绝对。只需确保在html开头之前设置$county
的php,然后将title
标记更改为:
<title>Query results in <?php echo $county;?></title>
编辑:虽然j08691的答案更全面。
答案 1 :(得分:1)
if (isset($county)) {
echo "<title>Query results in $county</title>\n";
} else {
echo "<title>Some other title</title>\n";
}