您好,我有一些输入,但其中之一已禁用(是的,我需要我的时间表),但如何将它发送到autocomplete.php插入insert.php我遇到了此错误未定义索引:C:\wamp\中的client1第30行的www\teSTLp\insert.php

这是我的代码autocomplete.php

<form action = 'insert.php' method="post"  >

    <input type="text" name="client1" class = "client" size="12" id ="client1" disabled />

        </form>

这是我的代码insert.php
    session_start();
    $date = $_POST['data'] ;
    $client1 = $_POST['client1'] ;

    echo($client1);
    echo($date);

编辑我尝试了以下方法:
<input type="text" name="client1" class = "client" size="12" id ="client1"readonly />

这里的错误:Notice: Undefined index: client1 in C:\wamp\www\testlp\insert.php on line 12

最佳答案

使用cypherabe的答案:https://stackoverflow.com/a/22990008/2780941

10-06 08:50