我创建了以下代码,它使下拉列表能够从sql db获取所有值,它能够获取下拉值,但我无法为下一个php页面选择值
<?php
$link = mysql_connect('www.xxxxxxxx.com', 'xxxxxxx', 'xxxxxxx');
if (!$link) {
die('Could not connect: ' . mysql_error());
}
mysql_select_db("xxxxxxxxxxxxxxxxxxxxx", $link);
function print_dropdown($query)
{
$queried = mysql_query($query);
$menu = '<select name="Topic">';
while ($result = mysql_fetch_array($queried)) {
$topic = htmlspecialchars($result['topic']);
$menu .= '<option value="' . $topic .'">' . $topic . '</option>';
}
$menu .= '</select>';
return $menu;
}
echo print_dropdown("SELECT topic FROM learning_outcome");
?>
我使用会话和缓存从下拉列表中发送选定的值,但在下一页中输出为空
答案 0 :(得分:0)
使用$ _POST ['主题']
修复