我是 PHP 新手,我正在尝试使用两个 foreach 制作一个表格,但我没有得到我想要的输出。
<html>
<head>
<title>Didier Test</title>
</head>
<body>
<h1>Yesso!</h1>
</body>
<table border="1">
<tr>
<th>Books</th>
<th>Price</th>
</tr>
<tr>
<?php foreach($name as $item): ?>
<td><?=$item?></td>
<?php foreach($price as $item2): ?>
<td><?=$item2?></td>
</tr>
<?php endforeach; ?>
<?php endforeach; ?>
</table>
</body>
</html>
我知道我的内部 foreach 有问题,但我不知道如何纠正它。
请告诉我。