我有一个下拉用户列表(由数据库信息生成),并且每次从下拉菜单中选择其他用户时,我都在寻找一种从数据库加载一些额外信息的方法。 (无需重新加载页面)
<select class="form-control" id="Users" name="Users">
<option value="0" selected> - </option>
<?php
$query=$MMM->query("SELECT * FROM `users` WHERE user_status = 1 ORDER BY user_id ASC");
while ($data = $MMM->fetch($query)) {
?>
<option value="<?php echo $data['user_id']; ?>"> <?php echo $data['user_name']; ?> </option>
<?php
}
?>
</select>
这是我每次从下拉菜单中选择其他用户时都会尝试“重新加载”的表
<table class="table table-bordered table-striped table-xs">
<thead>
<tr>
<th class="text-center">Username</th>
<th class="text-center">Name</th>
<th class="text-center">Email</th>
<th class="text-center">City</th>
</tr>
</thead>
<tbody>
User Info will go here
</tbody>
</table>
是否可以用PHP做到这一点?