Newer
Older
hello-programmer-world / src / sample / php / hide_data.php
@h.sakamoto h.sakamoto 8 days ago 417 bytes php
<?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>