0

我有两个表,如下所示:

员工 - (employee_ID, first_name, Last_name, Address, ETC) Training - (training_ID, Employee_ID, First_name, Last_name, Training)

员工 ID 是培训表中的外键。

我有一个培训表表格,供输入哪个员工需要哪个培训的人使用。

无论如何,在我的培训表格上,我可以有一个员工字段的下拉框,它将自动更新该员工 ID 的名字和姓氏?

或者,无论如何我都可以拥有我的表格,以便员工 ID 始终具有正确的名字和姓氏。

这是我的表单(html)和将其提交到数据库的 php 代码。

<html>
<head>
<link type="text/css" rel="stylesheet" href="style.css"/>
<title>Training</title>
</head>

<body>
<div id="content">  
<h1 align="center">Add Training</h1>

<form action="inserttraining.php" method="post">
<div>
<p>Training ID: <input type="text" name="Training_ID"></p>
<p>Employee ID: <input type="text" name="Employee_ID"></p>
<p>First name: <input type="text" name="First_name"></p>
<p>Last name: <input type="text" name="Last_name"></p>
<p>
Training required?
<select name="Training">
<option value="">Select...</option>
<option value="Customer Service">Customer Service</option>
<option value="Bailer">Bailer</option>
<option value="Reception">Reception</option>
<option value="Fish & meat counters">Fish & meat counters</option>
  <option value="Cheese counters">Cheese counters</option>
</select>
</p>
<input type="submit">
</form>
</div>

</body>
</html>

和php代码:

<?php
$con = mysql_connect("localhost","root","");
if (!$con)
  {
  die('Could not connect: ' . mysql_error());
  }

mysql_select_db("hrmwaitrose", $con);

$sql="INSERT INTO training (Training_ID, Employee_ID, First_name, Last_name, Training)
VALUES
  ('$_POST[Training_ID]','$_POST[Employee_ID]','$_POST[First_name]','$_POST[Last_name]','$_POST[Training]')";


if (!mysql_query($sql,$con))
  {
  die('Error: ' . mysql_error());
  }
echo "1 record added";

mysql_close($con);
?>

如果我的代码显示不好,请提前致谢。

4

1 回答 1

0

如果要使用下拉列表更新文本字段(名字、姓氏),则需要使用 ajax。

只需使用下拉列表的 onChange 事件发出 ajax 请求,然后使用 javascript 将返回值设置为文本字段。

对于预填充的值,您可以执行以下操作:

//code to get data from database

//store the result in an array
$result = mysql_fetch_array($sql);

//change the html in your form
<p>First name: <input type="text" name="First_name" value="<?php if(!empty($result['First_name'])) echo $result['First_name']; ?>"></p>
<p>Last name: <input type="text" name="Last_name" value="<?php if(!empty($result['last_name'])) echo $result['last_name']; ?>"></p>
于 2013-02-25T18:59:25.200 回答