注意:我被迫使用 TPL 文件。我查看了该网站上的其他解决方案,但它们似乎对我不起作用。我知道我想使用 $_POST['book'] 选择哪个选项。我已经尝试过 {html_options} (聪明),但似乎没有任何效果。我要做的就是记住用户点击提交(GO)按钮时的下拉列表位置。实现这一点的最简单方法是什么?
<?php
if($_SERVER['REQUEST_METHOD'] == 'POST')
{
$book = $_POST['book'];
$chapter = $_POST['chapter'];
$tbl_link = "PLD_LINK";
$query_chapter = "SELECT `TITLE`,`SORT_ORD`, `DESCRIPTION` FROM $tbl_link WHERE `TITLE` LIKE '%$book%' && `SORT_ORD` = '$chapter'";
$search_chapter=$db->query($query_chapter);
while($row = $search_chapter->fetch(PDO::FETCH_ASSOC)) {
{ $coal[] = $row; }
$tpl->assign('coal', $coal);
}
$search_chapter->closeCursor();
}
?>
<?php
while($rows = $result->fetch(PDO::FETCH_ASSOC)) {
{ $results[] = $rows ; }
$tpl->assign('results', $results);
}
?>
.TPL:
<select name='book'>
{foreach item=rows from=$results}
<option value='{$rows.TITLE}'>{$rows.TITLE}</option>{/foreach}
</select>