首頁 返回 繼續 最後一頁 摘要 圖形
FORM指令
通常網頁呼叫CGI的方式
- <form method=“POST” action=“cginame”>
- 文字1<input type=“text” name=“INPUT1” size=40>
- ……
- <input type=“submit” name=“SUBMIT” value=“輸入”>
- </from>
- form 的 method可以指定為POST或GET
- action 的內容則是指向CGI的位置
輸入元件:
- <input type=… name=… value=…. Size=….>