I\'m trying to display data from database into a table in html. here is my code:
php code:
if($_SERVER[\'REQUEST_METHOD\'] ==\'POST\')
{
$type_u
Here is the solution total html with php and database connections
database connections
Employee_id
Employee_Name
Employee_dob
Employee_Adress
Employee_dept
Employee_salary
{$row\['employee_id'\]}
{$row\['employee_name'\]}
{$row\['employee_dob'\]}
{$row\['employee_addr'\]}
{$row\['employee_dept'\]}
{$row\['employee_sal'\]}
\n";
}
?>
Source: retrieve data from db and display it in table in php .. see this code whats wrong with it?