-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathowner_info.php
44 lines (41 loc) · 1.23 KB
/
owner_info.php
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
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html>
<body>
<h2><strong>view / modify owner information </h2>
<form action="owner_info_php.php" method="post">
<p>
새로운 카페 이름
<input type="text" name="cafename" >
<p>
새로운 카페 주소
<input type="text" name="cafeaddress">
<p>
[카페 타입]<br>
<input type="radio" name="cafetype" value="franchise"> 프렌차이즈
<input type="radio" name="cafetype" value="independent"> 개인카페 <br>
<p>
[카페 목적] <br>
<input type="radio" name="purpose" value="study">스터디
<input type="radio" name="purpose" value="chat"> 수다떨기
<br><br>
<p>
[바뀐 카페기능]<br>
<콘센트><br>
<input type="radio" name="plug" value="1"> 있음
<input type="radio" name="plug" value="0"> 없음 <br>
<p>
<주차가능><br>
<input type="radio" name="parking" value="1"> 가능
<input type="radio" name="parking" value="0"> 불가능 <br>
<p>
<와이파이><br>
<input type="radio" name="wifi" value="1"> 있음
<input type="radio" name="wifi" value="0"> 없음 <br>
<p>
<카페 내부 화장실> <br>
<input type="radio" name="toilet" value="1"> 있음
<input type="radio" name="toilet" value="0"> 없음 <br>
<input type="submit" value="modify">
</form>
</body>
</html>