好吧,这让我发疯了,我似乎根本找不到解决方案!
基本上我的页面上有两个选择框,但是我希望根据第一个选择框的值从 mysql 数据库中填充第二个选择框。
例如,如果我从第一个选择框中选择值“misc”,则第二个选择将填充我数据库中的 misc 表!(第二个选择框将在第一个选择框选择更改时通过 ajax 刷新)
我唯一的问题是我想不出一种将第一个选择框的值存储在 php 变量中的方法,因此可以在我的函数中使用它来填充第二个选择框(由 ajax 刷新)
多谢你们
<form action="scripts/tp/process.php" method="post" enctype="multipart/form-data">
Select teleport here:
<select name="selectmate" id="Testid" onchange='Ajax();'>
<option value="Misc">Misc...</option>
<option value="Stunt">Stunt</option>
<option value="deathmatches">Deathmatches</option>
<option value="Car"> Car </option>
<option value="Races">Races </option>
</select>
<br/>
<label for="file">Filename:</label>
<input name="file" type="file"/>
<br/>
<label for="Name">Teleport name:</label>
<input type="text" name="Name" id="Name"/>
<br/>
<label for="Tp"> Teleport command:</label>
<input type="text" name="Tp" id="Tp"/>
<br/>
<label for="Info">teleport infomation</label>
<input type="text" name="Info" id="Info"/>
<br/>
<input type="submit" name="submit" value="Submit"/>
</form>
<h2>Delere entry here!</h2>
<form action="scripts/misc/miscdelete.php" method="post" enctype="multipart/form-data">
<select name="deletemisc">
<?php
ListDatabase($value);
?>
</select>
<input type="submit" name="delete" value="Delete"/>
</form>
我需要将第一个选择框的值存储在变量 $value 中