-3

我有一个包含数据库查询的页面,如果 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

 }

如果设置了县,我想在页面标题中添加县。这可能吗?

4

2 回答 2

1

绝对地。只需确保您设置的 php$county在您的 html 开始之前出现,然后将您的title标签更改为:

<title>Query results in <?php echo $county;?></title>

编辑:虽然 j08691 的答案更全面。

于 2013-08-07T19:36:22.060 回答
1
if (isset($county)) {
    echo "<title>Query results in $county</title>\n";
} else {
    echo "<title>Some other title</title>\n";
}
于 2013-08-07T19:36:29.977 回答