-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathreentry.php
More file actions
44 lines (38 loc) · 1.19 KB
/
reentry.php
File metadata and controls
44 lines (38 loc) · 1.19 KB
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
<!-- 実験WebPage created by Wakayama Univ. AMLAB -->
<!-- 実験準備 -->
<!DOCTYPE html>
<html lang="ja">
<head>
<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">ID:<?php echo $id; ?> Session No.<?php echo $session; ?></div>
</header>
<section>
<h2>
<?php print $id. 'さん、よろしくお願いします!<br />'; ?>
</h2>
<?php echo $reentry; ?>
<form method="POST" action="play_<?php echo $engtitle; ?>.php">
<input type="hidden" name="id" value="<?php echo $id; ?>">
<input type="hidden" name="session" value="<?php echo $session ?>">
<button id="session" type=“submit” class="btn"><div class="label">スタート</div></button>
</form>
</section>
<hr />
<footer>
<p><?php echo $footer; ?></p>
</footer>
</body>
</html>