Any HTML expert, Help needed, can I keep test1.htm for "action"

キャンセル
次の結果を表示 
表示  限定  | 次の代わりに検索 
もしかして: 

Any HTML expert, Help needed, can I keep test1.htm for "action"

ソリューションへジャンプ
825件の閲覧回数
TVNAIDU
Contributor III

I wrote small htm file to test LED using radio button, when I click on apply, I cannot see anywhere data collected, I am not sure what to give for "action", temporarily I am giving test1.htm, not sure that is correct or not. I added this file to the directory, then click on make to create C file, then build again and loaded, not getting any output fo rtesting, appreciated for help. testing with LITE code. 

 

 

 

$ cat led_test.htm
<html>
<head>
<title>My Page</title>
</head>
<body>
<form name="myform" action="test1.htm" method="POST

<div align="center">
LED11 <input type="radio" name="group1" value="ON"> ON
<input type="radio" name="group1" value="OFF" > OFF
<input type="radio" name="group1" value="Reboot"> REBOOT <br>
<br>
LED22 <input type="radio" name="group2" value="ON"> ON
<input type="radio" name="group2" value="OFF"> OFF
<input type="radio" name="group2" value="Reboot" > REBOOT<br>
<br>
LED3 <input type="radio" name="group3" value="ON"> ON
<input type="radio" name="group3" value="OFF"> OFF
<input type="radio" name="group3" value="Reboot" > REBOOT<br>
<br>
LED4 <input type="radio" name="group4" value="ON"> ON
<input type="radio" name="group4" value="OFF"> OFF
<input type="radio" name="group4" value="Reboot" > REBOOT<br>
<br>
</div>

<div align="center"><br>
<INPUT TYPE=SUBMIT VALUE="Apply">
</div>
</form>
</body>
</html>

ラベル(1)
0 件の賞賛
1 解決策
318件の閲覧回数
p4p4
Contributor I

form tag in line line 7 is not closed:

 

<form name="myform" action="test1.htm" method="POST    

 

missing ">

元の投稿で解決策を見る

0 件の賞賛
1 返信
319件の閲覧回数
p4p4
Contributor I

form tag in line line 7 is not closed:

 

<form name="myform" action="test1.htm" method="POST    

 

missing ">

0 件の賞賛