再次這個用戶個人資料網站難倒我...我想出瞭如何顯示登錄用戶上傳的圖像,以用作顯示圖片。問題是我找不到一個簡單的方法來調整圖像顯示後的大小。所以我從我的HTML頁面中使用了一個圖像保持器類型的腳本。現在我試圖找出一種方法將PHP鏈接到圖像的PHP鏈接到HTML圖像代碼中。基本上我的問題是,是否有辦法將下面的腳本轉換爲PHP腳本或使其以HTML格式工作?將HTML鏈接轉換爲PHP鏈接?
<a class="img-thumbnail lightbox pull-left" href="" data-plugin-options='{"type":"image"}'>
<img class="img-responsive" width="215" src="link-to-the-image">
<span class="zoom">
<i class="icon icon-16 icon-white-shadowed icon-search"></i>
</span>
</a>
我試圖讓這個鏈接的圖像上面的腳本中工作,因爲這是我想顯示的圖像:
echo "http://basecentre.co.uk/user_bc_74hw438eryer90reh0e9rh83232_members/upload/".$_SESSION['photo']."";
試過以下,但沒有運氣,沒有圖片顯示...
<a class="img-thumbnail lightbox pull-left" href="" data-plugin-options='{"type":"image"}'>
<img class="img-responsive" width="215" src="http://basecentre.co.uk/user_bc_74hw438eryer90reh0e9rh83232_members/upload/".$_SESSION['photo']."">
<span class="zoom">
<i class="icon icon-16 icon-white-shadowed icon-search"></i>
</span>
</a>
可能是因爲它是HTML格式...呃。但我已經嘗試把PHP括號之間的HTML和一切。 Confussed?
感謝您的幫助,我傻忘了「回聲」!剛剛添加它,現在它工作完美,歡呼! – AidanPT