您好,我有一些输入,但其中一个被禁用(是的,我的时间表需要它)但是我如何将它发送 autocomplete.php 到 insert.php 我有这个错误 Undefined index: client1 in C:\wamp\ www\testlp\insert.php 第 30 行
这是我的代码 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