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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
|
<?php require_once('../webadmin/basic_info.php');
$SD_master_room_info = get_master_room_info_web2('(1,2,3,4)'); $SSW_master_room_info = get_master_room_info_web2('(5)'); $CW_master_room_info = get_master_room_info_web2('(6)'); ?>
<!DOCTYPE html> <html dir="ltr" lang="en-US"> <head> <?php require_once("html_head.php") ?> </head>
<body class="stretched no-transition">
<?php require_once("google_analysis.php"); ?>
<!-- Document Wrapper ============================================= --> <div id="wrapper" class="clearfix">
<!-- Header ============================================= --> <?php require_once("html_header.php") ?>
<!-- Content ============================================= --> <section id="content">
<div class="content-wrap nopadding">
<div id="section-pricing" class="center" style="background-image: url(../images/whyus_bg.jpg); background-repeat: repeat;"> <div class="container clearfix"> <div class="heading-block2 center"><h2 style="font-size: 36px; color:white;">寶源分店.柴灣</h2></div> <ul id="myTab" class="nav nav-tabs boot-tabs"> <li><a href="#priceing-a" data-toggle="tab">香港仔</a></li> <li><a href="#priceing-b" data-toggle="tab">小西灣</a></li> <li class="active"><a href="#priceing-c" data-toggle="tab">柴灣</a></li> </ul> <div id="myTabContent" class="tab-content"> <div class="tab-pane fade" id="priceing-a"> <div style="float:left; color:#FFF;">價錢代表每月租金</div> <div style="float:right; color:#FFF;">尺寸:(長x闊x高)</div> <div class="clearfix"></div> <?php foreach ($SD_master_room_info as $master_room) {
if (numberformat($master_room["retail_price"], 0, "") == numberformat($master_room["lowest_price"], 0, "")) { $org_price_text = '<span class="org" style="height: 22px;"> </span>'; } else { $org_price_text = '<span class="org">$' . floatval(numberformat($master_room["retail_price"], 0, "")) . '</span>'; }
echo '<div class="col_one_fifth pricelist"> <div class="feature-box fbox-center pricelist"> <div class="size">尺碼 ' . $master_room["size"] . '</div>';
$prepaid_discount_info = get_master_room_discount_by_mater_room_id($master_room["master_room_id"], date("Y-m-d"));
if (!empty($prepaid_discount_info)) { $i = 1; foreach ($prepaid_discount_info as $prepaid_discount) { if ($prepaid_discount["show_frontend"] == 0 || $i > 2) continue;
echo '<div class="price_g' . $i . '">HK$ <span>' . floatval(numberformat($master_room["retail_price"] * (100 - $prepaid_discount["discount"]) / 100, 0, "")) . '</span></div> <div class="price_info">' . $prepaid_discount["name_" . $langcode] . '</div>';
$i++; } }
echo '<div class="org">租金 $' . floatval(numberformat($master_room["retail_price"], 0, "")) . '</div>'; //<a href="rent.php?id='.$master_room["master_room_id"].'" class="button t400 ls2 button-rounded">租用</a> echo '</div></div>';
} ?> <div class="col_one_fifth pricelist"> <div class="feature-box fbox-center pricelist"> <div class="size">度身訂造存倉計劃﹕</div> <br/> <div class="price_r1">如需要較大的迷你倉,我們另設有為客人度身訂造呎寸可供選擇</div> <br/> <a href="contactus.php"><span class="price_g1">歡迎向我們查詢<br/>及獲取報價</span></a> </div> </div> <div class="clearfix"></div> <div style="font-size: 18px; color:#FFF;"><br/>地址:香港仔大道232號城都工業大廈5樓, 12樓, 14樓及18樓</div> </div><!-- end tab1--> <!-- tab2--> <div class="tab-pane fade" id="priceing-b"> <div style="float:left; color:#FFF;">價錢代表每月租金</div> <div style="float:right; color:#FFF;">尺寸:(長x闊x高)</div> <div class="clearfix"></div> <?php foreach ($SSW_master_room_info as $master_room) {
if (numberformat($master_room["retail_price"], 0, "") == numberformat($master_room["lowest_price"], 0, "")) { $org_price_text = '<span class="org" style="height: 22px;"> </span>'; } else { $org_price_text = '<span class="org">$' . floatval(numberformat($master_room["retail_price"], 0, "")) . '</span>'; }
echo '<div class="col_one_fifth pricelist"> <div class="feature-box fbox-center pricelist"> <div class="size">尺碼 ' . $master_room["size"] . '</div>';
$prepaid_discount_info = get_master_room_discount_by_mater_room_id($master_room["master_room_id"], date("Y-m-d"));
if (!empty($prepaid_discount_info)) { $i = 1; foreach ($prepaid_discount_info as $prepaid_discount) { if ($prepaid_discount["show_frontend"] == 0 || $i > 2) continue;
echo '<div class="price_g' . $i . '">HK$ <span>' . floatval(numberformat($master_room["retail_price"] * (100 - $prepaid_discount["discount"]) / 100, 0, "")) . '</span></div> <div class="price_info">' . $prepaid_discount["name_" . $langcode] . '</div>';
$i++; } }
echo '<div class="org">租金 $' . floatval(numberformat($master_room["retail_price"], 0, "")) . '</div>'; //<a href="rent.php?id='.$master_room["master_room_id"].'" class="button t400 ls2 button-rounded">租用</a> echo '</div></div>';
} ?> <div class="col_one_fifth pricelist"> <div class="feature-box fbox-center pricelist"> <div class="size">度身訂造存倉計劃﹕</div> <br/> <div class="price_r1">如需要較大的迷你倉,我們另設有為客人度身訂造呎寸可供選擇</div> <br/> <a href="contactus.php"><span class="price_g1">歡迎向我們查詢<br/>及獲取報價</span></a> </div> </div> <div class="clearfix"></div> <div style="font-size: 18px; color:#FFF;"><br/>地址:小西灣安業街3號新藝工業大廈1樓E室</div> </div><!-- end tab2--> <!-- tab3--> <div class="tab-pane fade in active" id="priceing-c"> <div style="float:left; color:#FFF;">價錢代表每月租金</div> <div style="float:right; color:#FFF;">尺寸:(長x闊x高)</div> <div class="clearfix"></div> <?php foreach ($CW_master_room_info as $master_room) {
if (numberformat($master_room["retail_price"], 0, "") == numberformat($master_room["lowest_price"], 0, "")) { $org_price_text = '<span class="org" style="height: 22px;"> </span>'; } else { $org_price_text = '<span class="org">$' . floatval(numberformat($master_room["retail_price"], 0, "")) . '</span>'; }
echo '<div class="col_one_fifth pricelist"> <div class="feature-box fbox-center pricelist"> <div class="size">尺碼 ' . $master_room["size"] . '</div>';
$prepaid_discount_info = get_master_room_discount_by_mater_room_id($master_room["master_room_id"], date("Y-m-d"));
if (!empty($prepaid_discount_info)) { $i = 1; foreach ($prepaid_discount_info as $prepaid_discount) { if ($prepaid_discount["show_frontend"] == 0 || $i > 2) continue;
echo '<div class="price_g' . $i . '">HK$ <span>' . floatval(numberformat($master_room["retail_price"] * (100 - $prepaid_discount["discount"]) / 100, 0, "")) . '</span></div> <div class="price_info">' . $prepaid_discount["name_" . $langcode] . '</div>';
$i++; } }
echo '<div class="org">租金 $' . floatval(numberformat($master_room["retail_price"], 0, "")) . '</div>'; //<a href="rent.php?id='.$master_room["master_room_id"].'" class="button t400 ls2 button-rounded">租用</a> echo '</div></div>';
} ?>
<div class="col_one_fifth pricelist"> <div class="feature-box fbox-center pricelist"> <div class="size">度身訂造存倉計劃﹕</div> <br/> <div class="price_r1">如需要較大的迷你倉,我們另設有為客人度身訂造呎寸可供選擇</div> <br/> <a href="contactus.php"><span class="price_g1">歡迎向我們查詢<br/>及獲取報價</span></a> </div> </div> <div class="clearfix"></div> <div style="font-size: 18px; color:#FFF;"><br/>地址:柴灣利眾街34號寶源(東丞)工業大廈15樓</div> </div><!-- end tab3--> </div><!-- end tab-content-->
<div class="clear"></div>
<div style=" font-size: 18px; color:#FFF; padding: 20px 0px;">付款方式: <img src="../images/visa_mastercard_logo_<?= $langcode ?>.png" height="50"></div> <!-- SEO content --> <h1 style="font-size: 22px; color:white;">平價迷你倉 大眾化之選</h1> <p style="font-size: 15px; color:white;">現時有不少人都把家中雜物或辦公室的物件,寄存於迷你倉。然而,坊間迷你倉的選擇眾多,要選擇具服務質素保證的平價迷你倉,是客人經常遇到的問題。 出入易迷你倉現時有提供兩種迷你倉服務:個人與家庭儲存、商用儲存。個人與家庭儲存方面,一般儲存物件為衣服、紀念用品、書本、運動用品、個人珍藏及家庭用品之類。商用儲存方面,一般儲存物件為文件、展覽用品、模型、文件夾、器材、商品庫存等。 兩種服務的迷你倉收費,同樣以迷你倉的尺碼和租用時間來計算。現時我們有提供15種尺碼的迷你倉,供客人租用,價錢則分有三種,其中預繳7至12個月租金的客人,可獲得較划算的優惠。</p> <p style="font-size: 15px; color:white;">如對我們的迷你倉價錢有任何疑問,歡迎透過電話 (852) 2580 2088、電郵 <a style="color:white;" href="mailto:info@innoutstorage.com"><strong>info@innoutstorage.com</strong></a>聯絡查詢。 </p> </div> </div> <!-- End section-pricing --> </div>
</section><!-- #content end -->
<!-- Footer ============================================= --> <?php require_once("html_footer.php"); ?> </div> <!-- #wrapper end -->
<!-- Go To Top ============================================= --> <div id="gotoTop" class="icon-angle-up"></div>
<!-- Footer Scripts ============================================= --> <script type="text/javascript" src="../js/functions.js"></script>
</body> </html>
|