본문 바로가기
C. 웹/실습

[WEB] 홈페이지 만들기 2.회원가입 창 만들기

by E-HO 2017. 7. 8.
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코드를 보자.

반응형