我遇到了這個問題,我試圖在src
部分的iframe中使用我的$test
變量,並且每次嘗試失敗時都只顯示一個黑色邊框。如何在iframe中使用PHP變量?
這裏是我的代碼:
<?php
$url = 'http://www.youtube.com/watch?v=9t5ItWlWyDg/';
$parts = explode('=', $url);
$url2 = $parts[1];
$url3 = trim($url2,"?\/");
echo $url3;
$youtube = 'http://www.youtube.com/v/';
$video = $url3;
$vars = '&loop=1&autoplay=1';
$test = ($youtube . $video . $vars);
echo $test;
?>
<br>
<iframe width="420" height="345"
src="<? $test ?>">
</iframe>
嘗試'<?php echo $ test;?>'在你的src =「」位 – Dave 2013-05-08 13:59:22