PHP 在HTML表格中显示数组数据

本文共计754个字,预计阅读时长3分钟。

Hi,本文展示如何使用PHP在HTML界面中显示一个数组中的内容,本文均为本人自己理解的内容,如有错误,还请理解(李姐万岁

一、创建HTML结构

使用  <table> 表格标签对来定义表格。

<table>
    <tr>
        <th>User Name</th>
        <th>User Age</th>
        <th>User City</th>
    </tr>
</table>

二、创建PHP数据

准备一个数组作为在HTML表格中显示的数据。

数组可以是任何类型的数据,例如关联数组、索引数组等。

<?php
$Array= array(
    array("User Name" => "张三", "User Age" => 10, "User City" => "北京"),
    array("User Name" => "李四", "User Age" => 20, "User City" => "天津"),
    array("User Name" => "王五", "User Age" => 30, "User City" => "南京"),
    array("User Name" => "赵四", "User Age" => 40, "User City" => "江苏")
);
?>

三、循环遍历数组

<table>
    <tr>
        <th>User Name</th>
        <th>User Age</th>
        <th>User City</th>
    </tr>
    <?php foreach ($Array as $Array): ?>
        <tr>
            <td><?php echo $Array["User Name"]; ?></td>
            <td><?php echo $Array["User Age"]; ?></td>
            <td><?php echo $Array["User City"]; ?></td>
        </tr>
    <?php endforeach; ?>
</table>

OK,本文到此结束,本文所有内容均为自己的理解,如有错误还请见谅。

温馨提示:最后更新于2024-04-15 00:09:52,某些文章具有时效性,若有错误或已失效,请评论反馈。
© 版权声明
THE END
喜欢就支持一下吧
点赞0赞赏 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容