-6

我正在尝试从表员工中检索数据。但是两个字段没有出现在表格中,而是数组出现了。如何解决?我正在尝试从表员工中检索数据。但是两个字段没有出现在表格中,而是数组出现了。如何解决?

 <?php
 include('dbconnect.php');
 ?>
<html>
<head> </head>
<body>
<?php
$query=("Select * from employee");
$result=mysql_query($query);

?>

<table border=2px solid gray >
<thead>
<tr>
<th>Employee Id</th>
<th>Employee Name</th>
<th>Employee DOB</th>
<th>Employee Addr</th>
<th>Employee Dept</th>
<th> Employee Salary</th>
</tr>
</thead>
<tbody>
<?php 

while($row=mysql_fetch_array($result))
{
echo "<tr>
<td>{$row['emp_id']}</td>
<td>{$row['emp_name']}</td>
<td>{$row['emp_dob']}</td>
<td>{$row['emp_addr']}</td>
<td>$row{['emp_dept']}</td>
<td>$row{['emp_salary']} </td>
</tr>" ;
}

?>

</tbody>


</table>
<?php mysql_close($link); ?>







</body>
</html>

output:



1   farook  31-08-1981  Chittagong  Array{['emp_dept']}     Array{['emp_salary']}
2   harun   30-08-1981  Chittagong  Array{['emp_dept']}     Array{['emp_salary']}
3   Kamrul  30-08-1982  Barisal     Array{['emp_dept']}     Array{['emp_salary']}
4   Qamrul  01-08-1980  Chittagong  Array{['emp_dept']}     Array{['emp_salary']}
5   Zillul  30-07-1980  Kutubdia    Array{['emp_dept']}     Array{['emp_salary']}
6   Abdullah Al Amin    25-05-1978  Chittagong  Array{['emp_dept']}     Array{['emp_salary']} 
4

1 回答 1

4

语法错误...替换

<td>$row{['emp_dept']}</td>
<td>$row{['emp_salary']} </td>

<td>{$row['emp_dept']}</td>
<td>{$row['emp_salary']} </td>
于 2013-06-24T10:34:00.743 回答