3 回答

TA貢獻(xiàn)1797條經(jīng)驗(yàn) 獲得超6個(gè)贊
試試這個(gè)代碼,它對(duì)我有用
<?php
for($i=1;$i<=25;$i++)
{
echo "<tr>";
for ($j=1;$j<=5;$j++)
{
echo "<td>$i * $j = ".$i*$j."</td>";
}
echo "</tr>";
}
?>

TA貢獻(xiàn)1856條經(jīng)驗(yàn) 獲得超5個(gè)贊
根據(jù):
for ($i = 1; $i < 26, $i++) { $productIDs = $ POST['ProductID ' . $我]; };
如果您需要在服務(wù)器端擁有一系列已發(fā)布的產(chǎn)品:
$postedProducts = [];
for ($i = 1; $i < 26; $i++) {
$currProductID = "ProductID_$i";
if (isset($_POST[$currProductID])) {
$postedProducts[] = $_POST[$currProductID];
}
}
不過(guò),我不明白為什么你需要閱讀$_POST。通常,具有出現(xiàn)在用戶輸入中的id的產(chǎn)品用于編輯或選擇操作。
如果確實(shí)有任何數(shù)據(jù)發(fā)布,并且是為了檢查所選產(chǎn)品,則檢查特定產(chǎn)品 ID 是否發(fā)布$selectedProductIDs[] = $i;在if塊中就足夠了。

TA貢獻(xiàn)1808條經(jīng)驗(yàn) 獲得超4個(gè)贊
你可以試試這個(gè)代碼。這段代碼肯定有效。
<!DOCTYPE html>
<html>
<head>
<title>Table using php</title>
</head>
<body>
<table border="1">
<thead>
<tr>
<th>ProductID</th><th>ProductPrice</th><th>Discount%</th><th>ShippingOption</th><th>PaymentType</th>
</tr>
</thead>
<tbody>
<?php
$tableStr = "";
for($rows=1;$rows<=25;$rows++)
{
$tableStr += "<tr>";
$tableStr += "<td>".$_POST['ProductID_'.$rows]."</td>";
$tableStr += "<td>".$_POST['ProductPrice_'.$rows]."</td>";
$tableStr += "<td>".$_POST['Discount_'.$rows]."</td>";
$tableStr += "<td>".$_POST['ShippingOption_'.$rows]."</td>";
$tableStr += "<td>".$_POST['PaymentType_'.$rows]."</td>";
$tableStr += "</tr>";
}
?>
</tbody>
</table>
</body>
</html>
- 3 回答
- 0 關(guān)注
- 228 瀏覽
添加回答
舉報(bào)