movie という名前のデータベースを作成しました。test_image(id int autoincrement,name varchar(30),image blob) という名前のテーブルがあります。データはphpコードの助けを借りて挿入されます.今、私は次のコードの助けを借りて画像を表示しました:
<?php
$host="yourhostname";
$user="username";
$pass="password";
$db="movie";
// just so we know it is broken
error_reporting(E_ALL);
//connect to the db
$link = mysql_connect("$host", "$user", "$pass") or die("Could not connect: " . mysql_error());
// select our database
mysql_select_db("$db") or die(mysql_error());
// get the image from the db
$sql = "SELECT image FROM test_image;";
// the result of the query
$result = mysql_query("$sql") or die("Invalid query: " . mysql_error());
// set the header for the image
header("Content-type: image/jpeg");
echo mysql_result($result, 0);
// close the db link
mysql_close($link);
?>
データベース内の画像をスライドショーしたい場合、現在は1つの画像しか表示されません。どのような変更を加える必要がありますか??