<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>for文をちょっと応用してみる</title>
<link rel="stylesheet" href="../style.css">
</head>
<body>
<table border="2">
<tr bgcolor="#aaaaaa">
<th>画像</th>
<th>風景</th>
</tr>
<?php
for( $i = 0 ; $i < 5 ; $i++ ){
echo "<tr>";
//画像へのパスの一部にループ用変数の値を利用する
echo "<td><img src=\"{$i}.jpg\"></td>" .
"<td>風景{$i}</td>";
echo "</tr>";
}
?>
</table>
<?php
//ループ回数は3回
$num = 3;
for( $i = 0 ; $i < $num ; $i++ ){
echo "<tr>";
//画像を出力する
echo "<img src=\"3.jpg\">";
echo "</tr>";
}
?>
</body>
</html>