Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- mosquitto
- map이 undefined가 뜰 때
- 데이터테이블 데이터 넣기
- DatePicker
- pm2 확인
- 1883
- 서버동기화
- 맥 어드레스
- datagridview 직접입력
- transfer
- setInterval 정지
- pm2 상태 확인
- mySQL_Replication
- AntDesign
- pm2
- invalid data
- mosquitto.conf
- DataGridView 직접 입력
- html #select #option #multiple
- setInterval 중지
- c# datagridview 데이터 넣기
- 공인IP
- setInterval clear
- allow_anonymouse
- pm2 시작
- timepicker
- listener 1883
- pm2 설치
- Replication
- setInterval 외부 정지
Archives
- Today
- Total
개발 노트
html form 태그 연습6 본문
겟과 포스트의 차이
form태그 쓸 때 웬만하면 post사용
get방식 url 전송처리
post방식 몰래 숨겨서 처리 안전
<html>
<head>
<meta charset="utf-8" />
</head>
<body>
<form action="http://localhost/method.php" method="post">
<input type="text" name="id" />
<input type="password" name="pwd" />
<input type="submit" />
</form>
</body>
</html>
'프로그래밍 > Html' 카테고리의 다른 글
html form 태그 연습 5 (0) | 2022.05.30 |
---|---|
html form 태그 연습 3 (0) | 2022.05.30 |
Html form 코드 연습 1 (0) | 2022.05.30 |
Html P태그를 배워보자 (0) | 2022.05.30 |
Html 이미지 태그를 연습해보자 (0) | 2022.05.30 |