<?php
$user = [
"name" => "もつに",
"address" => "神奈川県横浜市・・・",
"secret" => "目も当てられないような、絶対に知られたくない情報",
];
?>
<!DOCTYPE html>
<table border="1">
<tr>
<th>名前</th>
<td><?php echo $user["name"]; ?></td>
</tr>
<tr>
<th>住所</th>
<td><?php echo $user["address"]; ?></td>
</tr>
</table>