HTML Form、HTTP POST
關聯題: 此題與 Exercise 7 為同一題組
題目說明: 使用 HTML 建立一個含有表單的網頁(input_stu_info.php),表單需有可輸入姓名、學號(NCYU 的7碼學號)、E-mail、密碼的欄位,請使用 POST 的方式進行傳輸,將表單傳輸到 get_stu_info.php 的頁面。
<form action="get_stu_info.php" method="post">
<label for="name">姓名: </label>
<input type="text" name="name" id="name" placeholder="請輸入姓名">
<br />
<label for="stu_id">學號: </label>
<input type="number" name="stu_id" id="stu_id" placeholder="請輸入學號">
<br />
<label for="email">E-mail: </label>
<input type="email" name="email" id="email" placeholder="請輸入 E-mail 地址">
<br />
<label for="password">密碼: </label>
<input type="password" name="password" id="password" placeholder="請輸入密碼">
<br />
<input type="submit" value="註冊">
</form>