當前位置:首頁 » 數據倉庫 » php資料庫中存路徑怎麼讀
擴展閱讀
webinf下怎麼引入js 2023-08-31 21:54:13
堡壘機怎麼打開web 2023-08-31 21:54:11

php資料庫中存路徑怎麼讀

發布時間: 2023-01-24 16:19:51

『壹』 PHP如何讀取資料庫圖片路徑顯示出來,如何控制圖片的大小

取出資料庫保存的路徑$url
<img src="<?php echo $url;?>" width="圖片寬度" height="圖片高度">

『貳』 php 怎麼把上傳的圖片路勁存到mysql資料庫,然後再在頁面讀取出來

這兒就不用說文件上傳了撒。

上傳文件保存的路徑你肯定是知道的,還有文件名。把這兩個拼接起來,放到資料庫欄位裡面,一般為相對地址。

使用的時候直接放出來就行了。

我想中間並沒與什麼特殊的地方,你看我回到都是勉強打這么多字

『叄』 如何用php將.txt的文件路徑存儲在資料庫中,並在頁面中通過點擊顯示的文件名讀取

必須用上傳控制項,資料庫里的是虛擬路徑,文件必須物理上存在的。
string
size
=
fileupload1.postedfile.contentlength.tostring();
double
imagesize
=
math.round(float.parse(size)
/
1024,
1);
if
(imagesize
>
150)
{
m.show("你上傳的圖片大小為:"
+
imagesize.tostring()
+
"kb\\n\\n已超范圍規定的150kb了");
return;
}
string
name
=
fileupload1.filename;
string
type
=
name.substring(name.lastindexof(".")
+
1).tolower();
system.guid
guid
=
system.guid.newguid();
string
vsnewname
=
guid.tostring();//聲稱文件名,防止重復
fileupload1.saveas(httpcontext.current.server.mappath("~/file/"
+
vsnewname
+
"."
+
type));
string
path
=
"~/file/"
+
vsnewname
+
"."
+
type;

『肆』 php 資料庫中存圖片路徑 怎麼讀

如果顯示的是個紅叉叉,你點滑鼠右鍵選擇屬性,看看圖片地址,就知道是什麼原因了,建議這樣寫程序,試試看:
<?php
echo
"<img
src='$row[8]'>";
?>

『伍』 php中如何讓圖片顯示出來,現在可以從資料庫中讀出圖片路徑

echo $row['url'];
修改為:
echo '<img src=">' . $row['url'] . '">';

『陸』 php如何從資料庫中讀取多張圖片的路徑

<?php
$pic=array();//實例1,數組存儲
$pic2='';//實例2,變數存儲
while($rows=mysql_fetch_assoc($rs))
{
$pic[]=$rows["jj_yulan"];//存進數組
$pic2.="<imgalt=''src='{$row[jj_yulan]}'/>";//存進變數,注意.是連接符

}
//輸出
print_r($pic);
echo$pic2;
?>