質問編集履歴
1
echo show_form();を追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -96,9 +96,9 @@
|
|
96
96
|
|
97
97
|
//7-18.php
|
98
98
|
|
99
|
+
<?php
|
99
100
|
|
100
101
|
|
101
|
-
<?php
|
102
102
|
|
103
103
|
$sweets = array('Sesame Seed Puff','Coconut Milk Gelatin Square',
|
104
104
|
|
@@ -130,7 +130,7 @@
|
|
130
130
|
|
131
131
|
print<<<_HTML_
|
132
132
|
|
133
|
-
<form method="post" action="$_SERVER[P
|
133
|
+
<form method="post" action="$_SERVER[SCRIPT_NAME]">
|
134
134
|
|
135
135
|
Your Order: <select name="order" >
|
136
136
|
|
@@ -150,6 +150,16 @@
|
|
150
150
|
|
151
151
|
}
|
152
152
|
|
153
|
+
|
154
|
+
|
155
|
+
echo show_form();
|
156
|
+
|
157
|
+
|
158
|
+
|
153
159
|
?>
|
154
160
|
|
161
|
+
|
162
|
+
|
163
|
+
|
164
|
+
|
155
165
|
```
|