我創建了一個網站,我正在使用PHP來獲取Oracle數據庫表。網頁將不會顯示圖像
我已經用正確的圖像文件名對Oracle數據庫表進行了編碼,並將圖片上傳到了一個在線目錄,但沒有顯示在網頁上。
這是我的代碼從數據庫中獲取結果。
<?php
while(oci_fetch_array($stmt)) {
echo("<tr valign=top bgcolor=#ccffcc>");
$fg1 = oci_result($stmt,"TITLE"); //"Title";
echo("<td width=100>");
echo ($fg1);
echo("</td>");
// Aspect value in column two
$fg2 = oci_result($stmt,"AUTHOR");//"Author";
echo("<td width=100>");
echo ($fg2);
echo("</td>");
$fg3 = oci_result($stmt,"PRICE");//"Price";
echo("<td width=75>");
echo ($fg3);
echo("</td>");
$fg4 = oci_result($stmt,"PHOTO");//"Photo";
echo ("<br><img src=http://xxxxxx.kz/home/preznek/public_html/website/search_pics".$fg4."><br>");
echo("</td>");
echo("</tr>");
}
oci_close($connect);
?>
我在做什麼錯了?
這張圖片確實存在'search_pics「。$ fg4。」'? –
不,它是包含所有圖片的文件夾。圖片名稱picture1.png等 – c0nfus3d
那麼它需要是'search_pics /".$ fg4' –