일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
Tags
- SQL
- Two Points
- MYSQL
- 다익스트라
- Brute Force
- two pointer
- Dijkstra
- binary search
- union find
- 스토어드 프로시저
- Trie
- 이진탐색
- String
- DP
- 그래프
- Hash
- Stored Procedure
Archives
- Today
- Total
codingfarm
form 본문
1
2
3
4
5
6
7
8
9
10
|
<html>
<body>
<form action="http://localhost/login.php">
<p>아이디 : <input type="text" name = "id"></p>
<p>비밀번호 : <input type="password" name = "pwd"></p>
<p>주소 : <input type="text" name = "address"></p>
<input type="submit">
</form>
</body>
</html>
|
cs |
위 코드의 html파일을 웹브라우저로 열면 아래와 같이 표시된다

아이디는 jeonghae, 비밀번호는 1234, 주소는 seoul로 설정하고 질의 보내기를 누르면 아래와 같은 주소로 이동한다.
http://localhost/login.php?id=jeonghae&pwd=1234&address=seoul
'web > HTML5' 카테고리의 다른 글
label (0) | 2020.09.28 |
---|---|
hidden (0) | 2020.09.27 |
button (0) | 2020.09.27 |
radio, checkbox (0) | 2020.09.27 |
form_choice (0) | 2020.09.27 |
Comments