第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

具有 5 列和 25 行的 HTML 表格(使用循環(huán)) PHP

具有 5 列和 25 行的 HTML 表格(使用循環(huán)) PHP

PHP
慕仙森 2024-01-19 20:49:21
桌子看起來(lái)像這樣產(chǎn)品ID | 產(chǎn)品價(jià)格 | 折扣% | 運(yùn)輸選項(xiàng) | 付款類型產(chǎn)品 ID | 產(chǎn)品價(jià)格 | 折扣% | 運(yùn)輸選項(xiàng) | 付款類型產(chǎn)品 ID | 產(chǎn)品價(jià)格 | 折扣% | 運(yùn)輸選項(xiàng) | 付款類型產(chǎn)品 ID | 產(chǎn)品價(jià)格 | 折扣% | 運(yùn)輸選項(xiàng) | 付款類型產(chǎn)品 ID | 產(chǎn)品價(jià)格 | 折扣% | 運(yùn)輸選項(xiàng) | 付款類型產(chǎn)品 ID | 產(chǎn)品價(jià)格 | 折扣% | 運(yùn)輸選項(xiàng) | 付款類型...25 行HTML 中每列的 id 為:ProductID_1、ProductID_2、...3、4、5、...直到 25要求是不要更改 HTML 代碼!如何通過(guò)使用循環(huán)而不是鍵入每一列和行以編程方式管理表?這是我的想法,但不能正常工作:for ($i = 1; $i < 26, $i++) {   $productIDs = $_POST['ProductID_' . $i];   };
查看完整描述

3 回答

?
FFIVE

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>";

   }

?>


查看完整回答
反對(duì) 回復(fù) 2024-01-19
?
RISEBY

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塊中就足夠了。


查看完整回答
反對(duì) 回復(fù) 2024-01-19
?
炎炎設(shè)計(jì)

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>


查看完整回答
反對(duì) 回復(fù) 2024-01-19
  • 3 回答
  • 0 關(guān)注
  • 228 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)