我有一个正常的div
<div id="fb-root"></div>
<fb:like href="<?php echo $link; ?>" send="true" width="450" show_faces="true" font="">
</fb:like>
如果我尝试使用echo,当我这样做时,我没有得到$ link的值。
echo '<div id="fb-root"></div>
<fb:like href="<?php echo $link; ?>" send="true" width="450" show_faces="true" font="">
</fb:like>';
同样也是这个。我无法获得$ link。
echo '<iframe src="http://www.facebook.com/plugins/like.php?app_id=208015255907895&href="',$link,'"&send=true&layout=button_count&width=50&show_faces=true&action=like&colorscheme=light&font=trebuchet+ms&height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:50px; height:21px;" allowTransparency="true"></iframe> '
任何帮助?
答案 0 :(得分:3)
您无法在<?php ... ?>
中使用echo
。尝试:
echo '<div id="fb-root"></div><fb:like href="', $link, '" send="true" width="450" show_faces="true" font=""></fb:like>';
答案 1 :(得分:0)
echo '<div id="fb-root"></div><fb:like href="'.$link.'" send="true" width="450" show_faces="true" font=""></fb:like>';
您无法在<?php ?>
echo
括号
答案 2 :(得分:0)
你搞乱了'“和一个新的php标签
echo '<div id="fb-root"></div>
<fb:like href="'. $link .'" send="true" width="450" show_faces="true" font="">
</fb:like>';
答案 3 :(得分:0)
试试这个:
echo '<div id="fb-root"></div>
<fb:like href="'.$link.'" send="true" width="450" show_faces="true" font="">
</fb:like>';