为了账号安全,请及时绑定邮箱和手机立即绑定

如何访问数组中的值并将它们放入html表中

如何访问数组中的值并将它们放入html表中

PHP
倚天杖 2022-06-11 19:00:18
我只想将数据放入第二列。每个人都有这个的源代码吗?我想像这样将逗号分隔的值放入 html 表中
查看完整描述

2 回答

?
动漫人物

TA贡献1815条经验 获得超10个赞

以下是如何输出数组的全部内容,而无需指定数组的键


<!DOCTYPE html>

<html>

<head>

<!-- Your stylesheet here -->

</head>


<body>


<h2>My cool table</h2>


<table>

<tr>

  <th>Items</th>

  <th>Stocks</th>

<tr>


<?php


// Create the array

$myArray=array('TV' => '1', 'Speaker' => '34', 'Radio' => '11');


// Output all of the items in the table

foreach($myArray as $item => $stock){

echo "<tr><td>{$item}</td><td>{$stock}</td></tr>";

}


?>


</table>


</body>

</html>

输出应类似于以下内容:


<!DOCTYPE html>

<html>

<head>

<!-- Your stylesheet here -->

</head>


<body>


<h2>My cool table</h2>


<table>

<tr>

  <th>Items</th>

  <th>Stocks</th>

<tr>


<tr><td>TV</td><td>1</td></tr><tr><td>Speaker</td><td>34</td></tr><tr><td>Radio</td><td>11</td></tr>

</table>


</body>

</html>


查看完整回答
反对 回复 2022-06-11
?
白衣染霜花

TA贡献1796条经验 获得超10个赞

<html>



<?php 

$key = array(1,2,3);

?>


<table >

  <thead>

    <th>a</th>

    <th>b</th>

  </thead>

  <tbody>

    <tr>

      <td>c</td>

      <td><?php echo $key[0]?></td>

    </tr>

    <tr>

      <td>d</td>

      <td><?php echo $key[1]?></td>

    </tr>


  </tbody>

</table>


</html>

要访问数组,请使用 $variable_name[position]。


查看完整回答
反对 回复 2022-06-11
  • 2 回答
  • 0 关注
  • 174 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信