我試圖使用定位標記訪問上傳的圖像,該圖像已保存在我的服務器上(位於上傳文件夾中)。目標是提供像縮放功能。縮放工作正常,但圖像不顯示。 我想是這樣的
將php代碼添加到html定位標記
<?php
//$txt is the actual image name and $image is the name saved in uploads folder,$ext is the extension like .jpg or so.
$image = time().substr(str_replace(" ", "_", $txt), 5).".".$ext;
?>
在HTML
//image isn't displayed using
<a href = "<?php echo "uploads/$image" ?>"></a>
但顯示如果我使用
<a href = "uploads/image.jpg"></a>.
是有辦法,我可以用PHP代碼中訪問的圖像標籤?
現在工作正常..謝謝 – dhani 2013-05-11 21:41:49
嗨,我還有一個問題。我的腳本中有一些html代碼,我通過echo執行。假設我想從該回聲中訪問uploads文件夾中的圖像,我該怎麼做?我試過這個; 'echo'