文字與圖片顯示
大家好,小弟剛學php,在圖片顯示上遇到一些問題
我在members資料表中存NUM(int)和img(blob)這兩項資訊
然後在showMembers.php上顯示編號和圖片
我的問題是不曉該怎麼樣同時顯示文字訊息和圖片
若在showMembers.php增加header("Content-type: image/jpeg"); 則會沒辦法顯示編號
於是我想說將顯示圖片用showPic.php來顯示,但不太曉得該怎麼將img的資料傳過去
或者有甚麼樣的作法比較恰當呢?
麻煩板上大大們幫助了 謝謝!
showMembers.php
----------------------------------------------
<?php
include("DB_connect.php");
$sql = "SELECT * FROM members";
$result = $conn->query($sql);
if ($result->num_rows > 0) {
// output data of each row
while($row = $result->fetch_assoc()) {
echo "NUM:".$row["NUM"]."<br>";
echo "<IMG height='100' SRC=\"showPic.php?img=".$row."\">";
}
} else {
echo "0 results";
}
$conn->close();
?>
----------------------------------------------
showPic.php
----------------------------------------------
<?php
header("Content-type: image/jpeg");
echo $_GET;
?>
----------------------------------------------
頁:
[1]