HTMLフォームを作成していて、その中にテキストボックスがあります。私の要件は、ユーザーが複数のチェックボックスをオンにできることです。次に、チェックされたすべての値を取得してから、値をデータベースに送信する必要があります (PHP を使用したい)。
これがテキストボックス内の私のコードです
$Intensive=$_POST['Intensive'];
$Intensive_count=count($Intensive);
$i=0;
//$count=0;
//$index;
$max=0;
//$index;
While($i < $Intensive_count)
{
if($Intensive[$i]=="High frequency ventilation" )
{
$Intensive_score=4;
}
elseif($Intensive[$i]=="Mechanical ventilation with muscle relaxation")
{
$Intensive_score=4;
}
elseif($Intensive[$i]=="Mechanical ventilation")
{
$Intensive_score=3;
}
elseif($Intensive[$i]=="CPAP")
{
$Intensive_score=2;
}
elseif($Intensive[$i]=="supplemental oxygen")
{
$Intensive_score=1;
}
if($Intensive_score>$max)
{
$max=$Intensive_score;
$index=$i;
}
$i++;
}
上記のコードを使用すると、値をエコーできますが、レコードはデータベースに送信されません。
$sql1="insert into Form2 values('$Medical_Record_Id','$sub1','$Question1','4','$Intensive[$index]','$max')";
mysql_query($sql1);
どうすればいいのか誰か教えてください。
ありがとう ..:)