質問編集履歴
3
select文追記
title
CHANGED
File without changes
|
body
CHANGED
@@ -14,7 +14,12 @@
|
|
14
14
|
<input name='h_name[]' type='search' class='name' autocomplete='on' placeholder='xxx' list='name_list' value = '".$h_name[$i]."' />
|
15
15
|
<datalist id='name_list'>
|
16
16
|
/***データベースから10000レコード取得***/
|
17
|
+
$sql="select s_code,s_name,s_kata from master where s_kubun = '1' order by s_kata desc ";
|
18
|
+
$result=mysql_query($sql);
|
19
|
+
while($row=mysql_fetch_array($result)){
|
20
|
+
$code_get = $row['s_code'];
|
17
|
-
|
21
|
+
echo "<option value=".$code_get.">";
|
22
|
+
}
|
18
23
|
</datalist>
|
19
24
|
</td>
|
20
25
|
|
2
修正
title
CHANGED
File without changes
|
body
CHANGED
@@ -20,6 +20,5 @@
|
|
20
20
|
|
21
21
|
/*省略*/
|
22
22
|
|
23
|
-
</tbody>
|
24
23
|
</form>
|
25
24
|
```
|
1
markdownを使用
title
CHANGED
File without changes
|
body
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
|
5
5
|
ご教示お願い致します。
|
6
6
|
|
7
|
-
|
7
|
+
```ここに言語を入力
|
8
8
|
<form action='#' name='form_head' method='post'>
|
9
9
|
<table id='den_tbl'>
|
10
10
|
<thead><tr><th>品目コード/商品名/型式</th><th>数量</th><th>単価</th></thead>
|
@@ -21,4 +21,5 @@
|
|
21
21
|
/*省略*/
|
22
22
|
|
23
23
|
</tbody>
|
24
|
-
</form>
|
24
|
+
</form>
|
25
|
+
```
|