回答編集履歴
1
コードを微修正
answer
CHANGED
@@ -4,13 +4,13 @@
|
|
4
4
|
|
5
5
|
```HTML
|
6
6
|
<?php
|
7
|
-
$posted_id = $_POST['id];
|
7
|
+
$posted_id = $_POST['id'];
|
8
8
|
?>
|
9
9
|
<html>
|
10
10
|
<body>
|
11
11
|
<form method="POST">
|
12
12
|
<input type="hidden" name="id" value="<?php echo $posted_id;?>">
|
13
|
-
<input type="submit" value="
|
13
|
+
<input type="submit" value="次のページへ">
|
14
14
|
</form>
|
15
15
|
</body>
|
16
16
|
</html>
|