我想从 MYSQL 数据库中获取我的客户电话号码,并根据用户在之前的下拉框中选择客户将其自动填充到输入框中。
我过去在填写大量数据时设法做到了这一点,但我之前使用的似乎有很多代码来自动填充单个输入框。
我知道如何根据从前一页传递的数据填写客户电话(尽管我在这里删除了该位),但我希望这些数据在用户使用下拉菜单时动态更改。
必须有一种简单的方法来做到这一点,但我是 js 的完全新手(并且只精通 PHP 和 MYSQL)。谁能帮我一把?
我的 PHP/HTML:
$result = mysql_query("SELECT cust_id, name, phone FROM customers ORDER BY name ASC");
$customers = mysql_fetch_array($result);
<label for="customer">Customer:</label>
<select name="customer">
<option value="0">Add New Customer</option>
<? foreach ($customers as $customer): ?>
<option value="<?=$customer['cust_id']?>" <?=($customer['cust_id'] == $parts['cust']) ? "selected" : ""?>><?=$customer['name']?></option>
<? endforeach; ?>
</select>
<label for="custphone">Customer Phone:</label>
<input type="text" name="custphone" value="">
如果您需要我的其他任何东西,请告诉我,并提前感谢您在这方面的帮助。