You can add mysql connection using PHP file. Below is the example of PHP file.
| Header of Table name |
";
while($row = mysql_fetch_array($result))
{
echo "";
echo "| " . $row['(database_column_name)'] . " | ";
echo "" . $row['database_column_name'] . " | ";
echo "
";
}
echo "";
mysql_close($con);
?> }