Suyeon Jung

Fix error

This diff is collapsed. Click to expand it.
...@@ -10,70 +10,6 @@ ...@@ -10,70 +10,6 @@
10 <link rel='stylesheet' href='/css/category.css'> 10 <link rel='stylesheet' href='/css/category.css'>
11 11
12 <title>📝 결과</title> 12 <title>📝 결과</title>
13 - <h1>
14 - 🥘 맛집 현황</h1>
15 -<table class="table">
16 - <thead class="thead-dark">
17 - <tr>
18 - <th>음식점명</th>
19 - <th>전화번호</th>
20 - <th>대표음식</th>
21 - <th>도로명주소</th>
22 - </tr>
23 - </thead>
24 - <tbody>
25 - <%for (var i =0; i <stores.length; i++){%>
26 - <tr>
27 - <td>
28 - <%=stores[i].RESTRT_NM%>
29 - </td>
30 - <td>
31 - <%=stores[i].TASTFDPLC_TELNO%>
32 - </td>
33 - <td>
34 - <%=stores[i].REPRSNT_FOOD_NM%>
35 - </td>
36 - <td>
37 - <%=stores[i].REFINE_ROADNM_ADDR%>
38 - </td>
39 - </tr>
40 - <%}%>
41 - </tbody>
42 -</table>
43 -
44 -
45 -
46 -<h3>총 맛집 개수 :
47 - <%=stores.length%>
48 -</h3>
49 -
50 -
51 -<h1>🍔 패스트푸드점 현황 </h1>
52 -
53 -<table class="table">
54 - <thead class="thead-dark">
55 - <tr>
56 - <th>사업장명</th>
57 - <th>도로명주소</th>
58 - </tr>
59 - </thead>
60 - <tbody>
61 - <%for (var i =0; i <fast_food_stores.length; i++){%>
62 - <tr>
63 - <td>
64 - <%=fast_food_stores[i].BIZPLC_NM%>
65 - </td>
66 - <td>
67 - <%=fast_food_stores[i].REFINE_ROADNM_ADDR%>
68 - </td>
69 - </tr>
70 - <%}%>
71 - </tbody>
72 -</table>
73 -
74 -<h3>패스트푸드점 개수 :
75 - <%=fast_food_stores.length%>
76 -</h3>
77 </head> 13 </head>
78 14
79 <body> 15 <body>
......
1 <h1> 1 <h1>
2 🥘 맛집 현황</h1> 2 🥘 맛집 현황</h1>
3 +<table class="table">
3 <thead class="thead-dark"> 4 <thead class="thead-dark">
4 - <thead>
5 <tr> 5 <tr>
6 <th>음식점명</th> 6 <th>음식점명</th>
7 <th>전화번호</th> 7 <th>전화번호</th>
...@@ -29,13 +29,10 @@ ...@@ -29,13 +29,10 @@
29 </tbody> 29 </tbody>
30 </table> 30 </table>
31 31
32 -
33 -
34 <h3>총 맛집 개수 : 32 <h3>총 맛집 개수 :
35 <%=stores.length%> 33 <%=stores.length%>
36 </h3> 34 </h3>
37 35
38 -
39 <h1>🍔 패스트푸드점 현황 </h1> 36 <h1>🍔 패스트푸드점 현황 </h1>
40 37
41 <table class="table"> 38 <table class="table">
......