如何发布禁用的输入
2022-08-30 21:24:41
你好,我有一些输入,但其中一个被禁用了(是的,我需要它作为我的时间表)但是我如何自动发送它.php插入.php我有这个错误未定义的索引:C中的客户端1:\wamp\www\testlp\insert.php在第30行
这是我的代码自动完成.php
<form action = 'insert.php' method="post" >
<input type="text" name="client1" class = "client" size="12" id ="client1" disabled />
</form>
这是我的代码插入.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