-
Notifications
You must be signed in to change notification settings - Fork 0
/
input.php
349 lines (296 loc) · 9.92 KB
/
input.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
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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
<?php
require_once "help.php";
require_once "help_confirm.php";
Err();
// mk_session();
session_start();
// var_dump($_POST);
// echo "あああ";
// var_dump($_SESSION);
// if($_POST){
// 空エラー error
// ここでリセットしちゃってる
// @$_POST["firstname"] = @$_POST['firstname'];
//
//
// @$_POST["lastname"] = @$_POST['lastname'];
//
//
// @$_POST["firstname2"] = @$_POST['firstname2'];
//
//
// @$_POST["lastname2"] = @$_POST['lastname2'];
//
//
// @$_POST["sex"] = @$_POST['sex'];
//
//
// @$_POST["mail"] = @$_POST['mail'];
//
//
// @$_POST["mailcheck"] = @$_POST['mailcheck'];
//
//
// @$_POST["phone"] = @$_POST['phone'];
//
//
// @$_POST["date"] = @$_POST['date'];
//
//
// @$_POST["college"] = @$_POST['college'];
//
//
// @$_POST["subject"] = @$_POST['subject'];
//
//
// @$_POST["hobby"] = @$_POST['hobby'];
// 文字数エラー error
// if(mb_strlen(@$_POST['firstname'])>20){
// @$error["firstname"] = 'over';
// }
// if(mb_strlen(@$_POST['mailcheck'])>20){
// @$error["mailcheck"] = 'over';
// }
// if(mb_strlen(@$_POST['firstname2'])>20){
// @$error["firstname2"] = 'over';
// }
// if(mb_strlen(@$_POST['mailcheck2'])>20){
// @$error["mailcheck2"] = 'over';
// }
// if(mb_strlen(@$_POST['hobby'])>200){
// @$error["mailcheck2"] = 'over';
// }
// 正規表現チェック
// if (!preg_match('/([0-9]{3})-([0-9]{4})-([0-9]{4})/',@$_POST['phone']){
// @$error['phone'] ="unmatch";
// }
// if((@$_POST['mail'] == @$_POST['mailcheck']&&strpos(@$_POST['mail'],"@")>0)){
// @$error['mail'] = "unmatch";
//
// }
// if(isset(@$_POST["firstname"])){
// @$error["firstname"] = null;
// }
// 次のページに飛ぶ
// header("Location:input.php");
// }
?>
<!--oTODO 保持した状態で表示するようにしないとね -->
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title>BBS</title>
<style>
.error {color:red;}
table{
border-collapse:collapse;
}
</style>
<style>
input[type=date]::-webkit-calendar-picker-indicator {
/* 好きなだけpx調整 */
padding: 40px;
}
</style>
</head>
<body>
<h1>BBS</h1>
<p color="red">hello</p>
<?php
if(
(@$_POST["firstname"] != "")&&
(@$_POST["lastname"] != "")&&
(@$_POST["firstname2"] != "")&&
(@$_POST["lastname2"] != "")&&
(@$_POST["sex"] != "")&&
(@$_POST["date"] != "")&&
(@$_POST["mail"] != "")&&
(@$_POST["mailcheck"] != "")&&
(@$_POST["phone"] != "")&&
(@$_POST["college"] != "")&&
(@$_POST["subject"] != "")&&
(@$_POST["submit"] == "確認")):
?>
<form action="confirm.php" method="POST">
<?php else :?>
<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method= "POST" >
<?php endif;?>
<table border="1" >
<thead ><th colspan="2">個人情報登録</th></thead>
<tbody>
<!--漢字 -->
<tr>
<td>お名前(全角)</td>
<td>
<label for="firstname">
<b>姓:</b>
</label>
<input type="name" id="firstname" name="firstname" maxlength="20" value="<?php print @$_SESSION['firstname'] ?>">
<?php if((@$_POST["firstname"] == "") && (@@$_POST["submit"] == "確認")): ?>
<p class="error" color="red">姓を入力してください</p>
<?php endif;?>
<label for="lastname">
<b>名:</b>
</label>
<input width="136.31" type="name" id="lastname" name="lastname" value="<?php print @$_SESSION['lastname'] ?>" maxlength="20">
<?php if((@$_POST["lastname"] == "")&& (isset($_POST["submit"]))): ?>
<p class="error" color="red">名を入力してください</p>
<?php endif;?>
</td>
</tr>
<!--下の形に近ずけていく -->
<!-- <?php if((@$_POST["lastname"] == "")&& (isset($_POST["submit"]))){
$error["lastname"] = ' <p class="error" color="red">名を入力してください</p>';
}?> -->
<?php if((@$_POST["lastname"] == "") && (@@$_POST["submit"] == "確認")): ?>
<p class="error" color="red">名を入力してください</p>
<?php endif;?>
<input width="136.31" type="name" id="lastname" name="lastname" maxlength="20" value="$_SESSION['lastname']">
<!--REVIEW 赤色を入れたい -->
<!-- <?php
if (isset($_SESSION["lastname"])) {
echo $_SESSION["lastname"];
}else {
echo $error["lastname"];
}
// ________________________________________________________________________________
<?php if((@$_POST["lastname"] == "") && (@$_POST["submit"] == "確認") && ($_SESSION["lastname"] != "error")): ?>
<input width="136.31" type="name" id="lastname" name="lastname" maxlength="20" value="$_SESSION['lastname']">
<?php elseif ((@$_SESSION["lastname"] == "error") && (@$_POST["submit"] == "確認")) :?>
<input width="136.31" type="name" style="color:red" name="lastname" maxlength="20" value="名を入力してください">
<?php else : ?>
<?php $_SESSION['lastname'] = 'error'; ?>
<?php endif; ?>
?> -->
<!--ふりがな -->
<tr>
<td>ふりがな(全角)</td>
<td>
<label for="firstname2">
<b>姓:</b>
</label>
<input type="name" id="firstname2" name="firstname2" value="<?php print @$_SESSION['firstname2'] ?>">
<?php if((@$_POST["firstname2"] == "") && (@@$_POST["submit"] == "確認")): ?>
<p class="error" color="red">姓を入力してください</p>
<?php endif;?>
<label for="lastname2">
<b>名:</b>
</label>
<input width="136.31" type="name" id="lastname2" name="lastname2" value="<?php print @$_SESSION['firstname2'] ?>">
<?php if((@$_POST["lastname2"] == "")&& (@@$_POST["submit"] == "確認")): ?>
<p class="error" color="red">名を入力してください</p>
<?php endif;?>
</td>
</tr>
<!--性別 -->
<tr>
<td>性別</td>
<td>
<label for="male">
<b>男</b>
</label>
<input type="radio" name="sex" id="male" value="男" checked>
<label for="female">
<b>女</b>
</label>
<input type="radio" name="sex" id="female" value="女">
</td>
</tr>
<!--生年月日 -->
<!-- sessionを保持するようにする -->
<tr>
<td>
<label for="date">
生年月日
</label>
</td>
<td>
<input type="date" id="date" name="date" value="<?php print @$_SESSION['date'] ?>" autocomplete="on" >
<?php if((@$_POST["date"] == "") && (@@$_POST["submit"] == "確認")): ?>
<p class="error" color="red">生年月日を適切に入力してください</p>
<?php endif;?>
</td>
<!--生年月日終了 -->
</tr>
<!--メアド -->
<tr>
<td>連絡可能なメールアドレス(半角)</td>
<td>
<input type="text" size="30" name="mail" value="<?php print @$_SESSION['mail'] ?>" maxlength="30">
<b>例:[email protected]</b>
<?php if((@$_POST["mail"] =="")&& (@@$_POST["submit"] == "確認")): ?>
<p class="error" color="red">メールアドレスを入力してください</p>
<?php endif;?>
</td>
</tr>
<!-- メアド確認 -->
<tr>
<td>確認入力</td>
<td>
<input type="text" size="30" name="mailcheck" value="<?php print @$_SESSION['mailcheck'] ?>" maxlength="30">
<?php if((@$_POST["mailcheck"] == "")&& (@@$_POST["submit"] == "確認")): ?>
<p class="error" color="red">確認用メールアドレスを入力してください</p>
<?php endif;?>
</td>
</tr>
<!--電話番号 -->
<tr>
<td>連絡可能な電話番号(携帯)</td>
<td>
<input type="text" size="20" name="phone" value="<?php print @$_SESSION['phone'] ?>" maxlength="15">
<b>例:</b>
<a href="*">0x0-xxxx-xxxx</a>
<?php if((@$_POST["phone"] == "")&& (@@$_POST["submit"] == "確認")): ?>
<p class="error" color="red">電話番号を入力してください</p>
<?php endif;?>
</td>
</tr>
<!--学歴 -->
<tr>
<td>最終学歴</td>
<td>
<label for="college">
<b>学校名:</b>
</label>
<input type="text" name="college" id="college" value="<?php print @$_SESSION['college'] ?>">
<b>例:東京大学</b>
<?php if((@$_POST["college"] == "")&& (@@$_POST["submit"] == "確認")): ?>
<p class="error" color="red">大学名を入力してください</p>
<?php endif;?>
<br>
<label for="subject">
<b>学部・学科・科名</b>
</label>
<input type="text" name="subject" id="subject" value="<?php print @$_SESSION['subject'] ?>">
<?php if((@$_POST["subject"] == "")&& (@@$_POST["submit"] == "確認")): ?>
<p class="error" color="red">学部や学科を入力してください</p>
<?php endif;?>
<br>
</td>
</tr>
<!--特技 -->
<tr>
<label for="hobby">
<td>特技</td>
</label>
<td>
<textarea placeholder="200文字まで" name="hobby" id="hobby" maxlength="200" cols="40" rows="10" ><?php print @$_SESSION['hobby'] ?></textarea>
<?php if((@$_POST["hobby"] == "")&& (@@$_POST["submit"] == "確認")): ?>
<p class="error" color="red">特技を入力してください</p>
<?php endif;?>
</td>
</tr>
<!--確認,リセット -->
<tr>
<td>確認-リセット</td>
<td align="center">
<input type="submit" name="submit" value="確認">
<input type="reset">
</td>
</tr>
</tbody>
</table>
</form>
</body>
</html>