-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsampleD-table-answer.php
38 lines (33 loc) · 1.04 KB
/
sampleD-table-answer.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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8"/>
<title>Sample Page 13-2(連想配列のデータベース)</title>
<!-- sampleA.css を読み込ませる -->
<link rel="stylesheet" type="text/css" href="sampleA.css">
</head>
<body>
<?php
$item_list = [
[ "id" => 1010 , "name"=> "みかん" , "price" => 50 ] ,
[ "id" => 1020 , "name"=> "りんご" , "price" => 100 ] ,
[ "id" => 1022 , "name"=> "パイナップル" , "price" => 1000 ] ,
] ;
?>
<h1>Sample Page 13-2<br/>(連想配列のデータベース)</h1>
<table border="1">
<tr><th>id</th><th>name</th><th>price</th></tr>
<?php foreach( $item_list as $item ) : ?>
<tr>
<td class='ID'><?php print $item["id"] ; ?></td>
<td class='NAME'><?php print $item["name"] ; ?></td>
<td class='PRICE'><?php print $item["price"] ; ?></td>
</tr>
<?php endforeach ; ?>
</table>
</body>
</html>
<!-- Local Variables: -->
<!-- mode: html -->
<!-- tab-width: 8 -->
<!-- End: -->