2013-08-17 89 views
0

經過3個多小時,谷歌搜索,我發現,脂肪酶做其他方式的我在做什麼,但無論如何,這裏是我想做的事:使嵌入HTML代碼

我有一個其中包含HTML代碼(嵌入谷歌地圖代碼),即

<iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" 
     marginwidth="0" src="https://www.google.com/maps/ms?........in a larger 
     map></iframe> 
現在

在PHP代碼,變量$位置我怎樣才能得到要顯示的地圖嗎? 以下輸出HTML代碼爲文本

<?php echo $loation; ?> 

謝謝!

+3

你把你的變量名拼寫錯了'$ loation;' - 應該是'$ location;'。假設你像'$ location ='...';'那樣正確設置你的變量,你應該沒問題。你可以在你設置變量的地方發佈代碼嗎? – Revent

+0

大聲笑,你是對的,它是$位置,並感謝提示,它被定義爲$ info ['location'];而它應該是html_entity_decode($ info ['location'],ENT_QUOTES,'UTF-8'); – user2692586

+0

發表我的評論上面作爲答案,所以你可以接受它。謝謝! – Revent

回答

1

您拼寫錯誤的變量名稱$loation; - 應爲$location;。假設你正確設置你的變量像

$location = '...'; 

或使用heredoc語法:

$location = <<<STR 
<iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" 
     marginwidth="0" src="https://www.google.com/maps/ms?........in a larger 
     map></iframe> 
STR; 

你應該罰款。