duan47676379 2018-10-15 06:21
浏览 79
已采纳

PHP - 无法从HTML表单提交POST值提交[重复]

This question already has an answer here:

I am receiving this error (4 times) when attempting to submit a form table:

Notice: Undefined index: accountid in php/ChartOfAccountsInclude.php on >line 106

This is line 106 in my code

$account_id = $_POST["accountid"][$i];

I am attempting to load in table data from a local database. Then I allow the user access to certain fields to change the values. Once they are done they press the button to submit and that is when I get the above error. There are currently four accounts in the database which means each time my code is looping through the POST value it is failing to retrieve the accountid. I have pasted the relevant code below:

User Page ChartOfAccounts.php

<?php
    include("view/SiteHeader.php");
    include('php/ChartOfAccountsInclude.php');
?>

<html>
    <head>
        <title>Chart of Accounts</title>
    </head>

    <body>
        <br/>
        <h2>Chart of Accounts</h2>
        <form action="" method="post">
            <div>
                <?php retrieveChart() ;?>
            </div>

            <div class="container">
                <button type="submit" name="submitMods" class="btn btn-outline-secondary">Submit Account Modifications</button>
            </div>
        </form>
        <?php if($submit_err) : ?>
            <?php generateError('warning', 'Account could not be updated.') ?>
        <?php endif; ?>
    </body>
</html>

PHP Include ChartOfAccountsInclude.php

<?php
    include_once('php/session.php');
    $sql = "SELECT * FROM Accounts";
    $result = mysqli_query($db,$sql);
    $count = mysqli_num_rows($result);
    $submit_err = FALSE;
    $submitaccount_err = FALSE;

    function retrieveChart() {
        global $db;
        $funcSQL = "SELECT * FROM Accounts";
        $funcResult = mysqli_query($db,$funcSQL);

        echo '<table border="1" class="table table-bordered table-hover">
        <thead>
        <tr>
            <th>Account ID</th>
            <th>Account Name</th>
            <th>Date Created</th>
            <th>Type</th>
            <th>Term</th>
            <th>Status</th>
            <th>Created By</th>
        </tr>
        </thead>';

        while($row = mysqli_fetch_array($funcResult))
        {
            $current = $longterm = $active = $inactive = $debi = $credit = $asset = $expense = $liability = $equity = $revenue = "";
            $curusr = $row['user_id'];
            $getUsernameSQL = "SELECT username FROM User_accounts WHERE user_id = $curusr";
            $usernameResult = mysqli_query($db,$getUsernameSQL);
            $usernameRow = mysqli_fetch_array($usernameResult);

            switch ($row['term']) {
                case 'Current':
                    $current = "selected = \"selected\"";
                    break;
                case 'Long Term':
                    $longterm = "selected = \"selected\"";
                    break;
            }
            switch ($row['account_status']) {
                case 'Active':
                    $active = "selected = \"selected\"";
                    break;
                case 'Inactive':
                    $inactive = "selected = \"selected\"";
                    break;
            }
            switch ($row['type']) {
                case 'Asset':
                    $asset = "selected = \"selected\"";
                    break;
                case 'Expense':
                    $expense = "selected = \"selected\"";
                    break;
                case 'Liability':
                    $liability = "selected = \"selected\"";
                    break;
                case 'Equity':
                    $equity = "selected = \"selected\"";
                    break;
                case 'Revenue':
                    $revenue = "selected = \"selected\"";
                    break;
            }

            echo '<tr>';
                echo '<td> <input name="accountid[]" disabled value="' . $row['account_id'] . '"> </td>';
                echo '<td> <input name="accountname[]" value="' . $row['account_name'] . '"> </td>';
                echo '<td> <input name="datecreated[]" disabled value="' . $row['date_created'] . '"> </td>';
                echo '<td> 
                        <select name="type[]">
                            <option '.$asset.'>Asset</option>
                            <option '.$expense.'>Expense</option>
                            <option '.$liability.'>Liability</option>
                            <option '.$equity.'>Equity</option>
                            <option '.$revenue.'>Revenue</option>
                        </select>
                    </td>';
                echo '<td> 
                        <select name="term[]">
                            <option '.$current.'>Current</option>
                            <option '.$longterm.'>Long Term</option>
                        </select>
                    </td>';
                echo '<td> 
                        <select name="accountstatus[]" value="' . $row['account_status'] . '">
                            <option '.$active.'>Active</option>
                            <option '.$inactive.'>Inactive</option>
                        </select>
                    </td>';
                echo '<td>
                        <input name="user_id[]" disabled value="' . $usernameRow['username'] . '">
                    </td>';
            echo '</tr>';
        } 
        echo '</table>';
    }

    if( isset($_POST['submitMods']) ) {
        $i = 0;

        while($i < $count) {
            $account_id = $_POST["accountid"][$i];
            $account_name = mysqli_real_escape_string($db,$_POST['accountname'][$i]);
            $type = mysqli_real_escape_string($db,$_POST['type'][$i]);
            $term = mysqli_real_escape_string($db,$_POST['term'][$i]);
            $account_status = mysqli_real_escape_string($db,$_POST['accountstatus'][$i]);

            $updateAccountsql = "
                UPDATE Accounts
                SET
                    account_id = '$account_id',
                    account_name = '$account_name',
                    type = '$type',
                    term = '$term',
                    account_status = '$account_status'
                WHERE account_id = '$account_id'";

            if($account_name == "") {
                $submit_err = TRUE;
            } else {
                $updateResult = mysqli_query($db,$updateAccountsql);
            }
            $i++;
        }

        if(!$submit_err) {
            //header("Location: ChartOfAccounts.php");
        }
    }
?>
</div>
  • 写回答

4条回答 默认 最新

  • dtsc14683 2018-10-15 06:51
    关注

    In HTML Elements with Disabled attribute are not posted or you can say their values are not submitted.

    Your input element is as below so it will not post any value.

    <input name="accountid[]" value="' . $row['account_id'] . '" disabled /> 
    

    Disabled controls Limitations:

    • it will not receive focus.

    • it will be skipped in tabbing navigation.

    • It cannot be successfully posted.

    So if you dont want let user edit that input and if it is not neccessary to show that input to users then you can try input type="hidden" as below:

    <input type="hidden" name="accountid[]" value="' . $row['account_id'] . '" /> 
    

    Or If you want to show the id to user but not want to let them edit then you can use readonly attribute in your case, by readonly attribute you will be able to post your field's data, see below for example:

    <input type="text" name="accountid[]" value="' . $row['account_id'] . '" readonly /> 
    

    Read-only elements

    • can receive focus but cannot be modified by the user.
    • it will included in tabbing navigation.
    • it will be successfully posted.
    • doesn't work on checkboxes and select tags

    Reference answer

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)

报告相同问题?

悬赏问题

  • ¥15 网络科学导论,网络控制
  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)