从 PHP 中的 2 个不同数组填充 HTML 表

我正在尝试从 2 个不同的 PHP 数组创建一个 HTML 表。这是那些数组 -


Array

(

    [0] => test1

    [1] => test2

)

Array

(

    [0] => column1

    [1] => column2

)

我正在创建这样的数组 -


$query = $_GET['query'];

$query_arr = explode(",", $query);

print_r($query_arr);

$boid = $_GET['boid'];

$boid_arr = explode(",", $boid);

print_r($boid_arr);

我需要一张像下面这样的桌子 -


DATA    COLUMN

test1   column1

test2   column2

我无法弄清楚如何实现这一目标。任何帮助将不胜感激。


交互式爱情
浏览 175回答 1
1回答

慕的地8271018

<table>&nbsp; &nbsp; <tr>&nbsp; &nbsp; &nbsp; &nbsp; <td>DATA</td>&nbsp; &nbsp; &nbsp; &nbsp; <td>COLUMN</td>&nbsp; &nbsp; </tr><?php// Add any markup that you need in `foreach`foreach ($query_arr as $key => $value) {?>&nbsp; &nbsp; <tr>&nbsp; &nbsp; &nbsp; &nbsp; <td><?=$value?></td>&nbsp; &nbsp; &nbsp; &nbsp; <td><?=$boid_arr[$key]?></td>&nbsp; &nbsp; </tr><?php}?></table>
打开App,查看更多内容
随时随地看视频慕课网APP