728x90
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 | <!DOCTYPE html> <html> <head> <meta charset ="utf-8" /> <title>회원가입</title> </head> <body> <form name ='join' method="POST" action="php_check.php"> <h1>input your information</h1> <table border="1"> <label>ID : <input type="text" name="userid" /></label> <br /> <label>PW : <input type="text" name="userpw" /></label> <br /> <label>PW again: <input type="text" name="userpw_a" /></label> <br /> <label>email : <input type="text" name="useremail" /></label> <br /> <label>name : <input type="text" name="username" /></label> <br /> <input type="submit" value="제출" onclick = "location.href='http://localhost/register.html'"; /> </table> </form> <input type="reset" value="rewrite" /> </body> </html> | cs |
간단한 회원가입 창이다.
다음은 회원가입할때 입력한 데이터를 MYSQL을 이용해서 데이터베이스에 넣는 php_check.php코드를 보자.
반응형
'C. 웹 > 실습' 카테고리의 다른 글
[WEB] 홈페이지 만들기 4.로그인 구현하기 (0) | 2017.07.08 |
---|---|
[WEB] 홈페이지 만들기 3.회원가입시 입력한 데이터를 DB에 넣기 (0) | 2017.07.08 |
[WEB] 홈페이지 만들기 1.로그인 창 만들기 (1) | 2017.07.08 |
[Webhacking.kr] 4. Challenge 24 (0) | 2017.06.29 |
[Webhacking.kr] 3. Challenge 6 (0) | 2017.06.29 |