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 | 31 |
Tags
- c# datagridview 데이터 넣기
- pm2 시작
- mosquitto
- pm2 상태 확인
- listener 1883
- setInterval 외부 정지
- AntDesign
- 데이터테이블 데이터 넣기
- Replication
- 서버동기화
- datagridview 직접입력
- mosquitto.conf
- pm2 확인
- transfer
- setInterval clear
- DataGridView 직접 입력
- map이 undefined가 뜰 때
- mySQL_Replication
- pm2 설치
- 맥 어드레스
- 공인IP
- allow_anonymouse
- 1883
- pm2
- DatePicker
- timepicker
- invalid data
- html #select #option #multiple
- setInterval 정지
- 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 |