-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathanswer_SpIntel.php
executable file
·72 lines (66 loc) · 2.64 KB
/
answer_SpIntel.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
<!-- 実験WebPage created by Wakayama Univ. AMLAB -->
<!-- 回答入力(書き取り) -->
<!DOCTYPE html>
<html lang="ja">
<head>
<title>Web聴取実験</title>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="stylesheet" type="text/css" href="./ExpWeb.css">
</head>
<body>
<?php
$id = $_POST['id'];
$session = $_POST['session'];
require('./param.php');
?>
<header>
<h1><?php echo $title; ?></h1>
<div class="header-right"><?php
if($session == 99){
print 'ID:'. $id. ' '. 'Session Practice';
}else{
print 'ID:'. $id. ' '. 'Session No.'. $session;
}
?></div>
</header>
<section>
<h2>
<div class="font-20px-red"><?php
if($session == 99){
print '練習';
}else{
print 'セッション'. $session;
}
?></div>
<div class="ttl">回答の入力</div>
</h2>
<div class="margin-b-30px">
<p>回答を書き写してください。</p>
<p>回答は<span>ひらがな</span>のみ、必ず<span>4文字</span>で答えてください。</p>
<p>文字の数え方に注意してください。</p>
<div class="index">「ん」や小さい「っ」も1文字と考えます。</div>
<div class="index">2文字の仮名で表すもの(拗音)も1文字と考えます。</br></div>
<div class="font-14px-red">例:「きゃ」・「きゅ」・「きょ」</div>
<div class="index">「ー」(長音符)は使用しないでください。</br></div>
<div class="font-14px-red">例:「かー」→「かあ」・「しー」→「しい」</div>
</div>
<!-- 回答入力フォーム 必須・ひらがなのみ -->
<form method="POST" action="./check_<?php echo $engtitle; ?>.php">
<?php for($i=1; $i<=$question_num; $i++): ?>
<div class="margin-tb-2per">
<label for="answer<?php echo $i;?>"><?php echo $i;?>. </label>
<input id="answer<?php echo $i;?>" type="text" name="answer<?php echo $i;?>" value="<?php echo $_POST['answer'.$i]; ?>" pattern="^[ぁ-ん]+$" required>
</div>
<?php endfor; ?>
<input type="hidden" name="id" value="<?php echo $id; ?>">
<input type="hidden" name="session" value="<?php echo $session; ?>">
<button type=“submit” class="btn"><div class="label">入力完了</div></button>
</form>
</section>
<hr />
<footer>
<p><?php echo $footer; ?></p>
</footer>
</body>
</html>