Doctype HTML
Doctype HTML
DOCTYPE html>
<html>
<head>
</head>
<body>
<table border="1">
<thead>
<tr>
<th>Patient ID</th>
<th>First Name</th>
<th>Last Name</th>
<th>Address</th>
<th>Contact Number</th>
</tr>
</thead>
<tbody>
<?php
$results = $conn->query($sql);
<tr>
</tr>
<?php
?>
</tbody>
</table>
</body>
</html>
---------------------------
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<table border="1">
<thead>
<tr>
<th>Patient ID</th>
<th>First Name</th>
<th>Last Name</th>
<th>Address</th>
<th>Contact Number</th>
</tr>
</thead>
<tbody>
<?php
$results = $conn->query($sql);
?>
<tr>
</tr>
<?php
?>
</tbody>
</table>
</body>
</html>
-------------
);
);
);