Seu
$output
está apenas emitindo os dados em si. Faça também gerar uma tabela HTML
. echo '<table>
<tr>
<th>ID</th>
<th>Name</th>
</tr>';
while ($row = mysqli_fetch_array($results)) {
echo '
<tr>
<td>'.$row['id'].'</td>
<td>'.$row['name'].'</td>
</tr>';
}
echo '
</table>';
A propósito, não vá direto para o código , veja também os avisos sobre quando/como usar tabelas.