我希望根据php中下拉列表中的更改事件从数据库中填充文本框值
实际上我的工作流程是当我通过下拉列表选择一个值时,在所选值(更改事件)的基础上,过滤后的记录应该在文本框中使用php
<head>
<script>
function SelectedTemplate()
{
what type of code i have to there?![for detail please see image i have posted][1]
</script>
</head>
<body>
<?php
$result=mysql_query("SELECT * FROM tbltemplate where UserName = '$name' " );
if($result != '')
{
while($test = mysql_fetch_array($result))
{
echo'<option value="' .$test['TempID']. '">' .$test['TempTitle']. '</option>';
}
}
?>
</body>
答案 0 :(得分:0)
您可以简单地从数据库中获取数据并将其放入变量中,然后将变量添加到文本框值中。 请发布您的代码,让我轻松解决您的问题
答案 1 :(得分:0)