我想要顯示或顯示圖像和文本都從數據庫使用php 當我顯示圖像形式的數據庫,然後它顯示圖像在同一時間在該頁面我回顯了一些文字,輸出頁面中沒有顯示任何文字。 我的意思是說我想在一個頁面上顯示員工圖像及其數據。我是PHP新手所以我做了太多的R & D。但沒有得到結果。我想要顯示圖像以及從數據庫中檢索的文本
<?php
$servername = "localhost";
$username = "root";
$dbname = "dat-database";
$password = "";
$conn = mysqli_connect($servername, $username, $password, $dbname);
$emp_id='';
$sql = "select * from emp_personaldetails where EMP_ID='1456'";
$result = mysqli_query($conn,$sql) ;
while($row = mysqli_fetch_array($result)){
header('Content-type: image/jpeg');
echo $row['image'];
$emp_id=$row['empid'];
}
?>
<!DOCTYPE html>
<html>
<body>
<table>
<tr><td>Employee id</td> <td><?php echo $emp_id; ?></td></tr>
</table>
</body>
</html>
如何存儲在數據庫中的圖像? –
'var_dump($ emp_id);' - 它說什麼? – odedta
@rupesh我已經回答你的問題,請檢查並讓我知道。 – RaMeSh