从 mysql 检索到的结果匹配下拉列表

发布于 2024-12-20 10:17:14 字数 595 浏览 1 评论 0原文

我这里有一个错误,从 mysql 数据库检索数据并在列表框或下拉列表中列出,当我需要更新表单时,我在刷新后得到结果。

我已经尝试过,但需要整理

<?
include("connect.php");
mysql_select_db("joblisting") or die(mysql_error());
$result = mysql_query("SELECT * FROM positiontitle") or die(mysql_error());
$ans=$positiontitle;
echo $ans;
?><select size=1 name="positiontitle" id="positiontitle"><?
echo '<option value="'.$ans.'">';
echo "</option>";
while ($row = mysql_fetch_array($result))
{
  echo "<option>";
  echo $row['positiontitle'];
  echo "</option>"; 
}
echo "<br />";

?>

I have an error here, the data retrived from mysql database and listed in listbox or dropdown, when i need to update my form i get the result after refresh.

I have tried but need to sortout

<?
include("connect.php");
mysql_select_db("joblisting") or die(mysql_error());
$result = mysql_query("SELECT * FROM positiontitle") or die(mysql_error());
$ans=$positiontitle;
echo $ans;
?><select size=1 name="positiontitle" id="positiontitle"><?
echo '<option value="'.$ans.'">';
echo "</option>";
while ($row = mysql_fetch_array($result))
{
  echo "<option>";
  echo $row['positiontitle'];
  echo "</option>"; 
}
echo "<br />";

?>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

听闻余生 2024-12-27 10:17:14

你在哪里定义 $positiontitle ?不应该是$_POST['positiontitle']吗?

where are you defining $positiontitle ? shouldn't it be $_POST['positiontitle']?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文