■formタグ
・action属性とmethod属性を指定する
・action属性
→フォームのデータの送信先(※URI)を指定する
※データを送るサーバーのCGIプログラムのURI
・method属性
→データの転送方法を指定する
→post と getの2種類
■inputタグ
・属性
type=”text” 入力ボックス
type=”password” 入力してテキストが●で表示されるボックス
type=”checkbox” チェックボックス
type=”radio” ラジオボタン ※複数のラジオボタンを1つのグループにするにはおなじname属性をつける
type=”submit” 送信ボタン
など
<form id="" method="" action=""> <input id="" type="text" name="" value="" /> <input id="" type="radio" name="group" value="" /> <input id="" type="radio" name="group" value="" /> <input id="" type="submit" value="会員登録" /> </form>
参考:
-HTMLタグリファレンス