我想在PHP中回顯動態圖像路徑。我有這樣的代碼,工程通過PHP回聲一個動態的HTML圖像路徑
<?php
//this code works
$image = '<img src="img/newlogo.jpg">';
echo($image);
?>
//gives me an image
而這個代碼不
<?php
//this code doesn't
$lineofstring='newlogo.jpg';
$image = '<img src="img/$lineofstring">';
echo($image);
?>
$ lineofsting實際上將是存儲在其中一個行充滿了MySQL數據庫的圖像路徑,例如:pictureabc.jpg,第二行是picturexyz.jpg等
我試圖將搜索到的imagepath名稱傳遞到$ lineofstring,然後echo'd,但沒有圖片出來。我哪裏錯了?
使用雙引號。 – bfavaretto 2012-04-28 01:23:45