我在数据库中有一个表员工。我能够使用php动态地在html表中添加,获取和显示该表中的每一行。
<a href='add-employee.php' style='float:right;'>Add Employee</a>
<table class="table table-responsive">
<thead>
<th><strong>Employee Id</strong></th>
<th><strong>Last Name</strong></th>
<th><strong>First Name</strong></th>
<th><strong>Department</strong></th>
<th><strong>Position</strong></th>
<th><strong>Telephone</strong></th>
</thead>
<tbody>
<?php
$load_employees = mysql_query("SELECT * FROM tbl_employee");
$loaded_employees = mysql_num_rows($load_employees);
while($y=mysql_fetch_array($load_employees)){
$emp_id = $y['emp_id'];
$last = $y['emp_lname'];
$first = $y['emp_fname'];
$department = $y['emp_department'];
$position = $y['emp_pos'];
$tel = $y['emp_tel'];
echo "<tr>
<td>$emp_id</td>
<td>$last</td>
<td>$first</td>
<td>$department</td>
<td>$position</td>
<td>$tel</td>
</tr>";
}
?>
</tbody
我的问题是无法更新html表中的指定行。我想要发生的事情就是说,例如,该表中已有5个条目,这意味着5行,当用户点击某一行时,它将传递emp_id,这是每行的主键并重定向更新-emp.php页面,其中包含用于更新行的表单。