私のテーブルはpank
、データベースへの接続方法を知っているので名前が付けられていますが、次のプログラミングで問題が発生します
私のテーブルは:
id| stream | title | cast | director
1 | stream1 | title of the movie1 | cast1 | director1
2 | stream1 | title of the movie2 | cast2 | director2
3 | stream2 | title of the movie3 | cast3 | director3
私のPHPスクリプト:
$query = "SELECT * FROM pank";
$result = mysql_query($query);
while ($row = mysql_fetch_array($result))
{
echo "<h2>".'Stream : ', $row['stream'], "</h2>",
"<br />",
"<h3>", 'Title of the movie : ', $row['title'], "</h3>",
"<h3>", 'cast : ', $row['cast'], "</h3>",
"<h3>", 'director : ', $row['director'], "</h3>"
;
}
次のように出力したい:
stream1
title of the movie1
cast1
director1
title of the movie2
cast2
director2
stream 2
title of the movie3
cast3
director3
上記のphpは次のように出力を提供しています:
stream1
title of the movie1
cast1
director2
stream1
title of the movie2
cast2
director2
stream2
title of the movie 3
cast3
director3
2回目にstream1というラベルの付いた出力は必要ありません