Retrieving data from database? [closed]

Syntax error …replace

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

with

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

Leave a Comment