2014-11-30 2 views
0

웹 페이지에 내 fb 페이지의 버튼처럼 페이스 북을 넣고 싶습니다. iframe을 사용하고 있는데,이 프레임을 HTML 파일에 넣으면 작동하지만, PHP 파일에 배치하면 아무 것도 표시되지 않습니다. 그것을 해결하는 데 도움주세요 제발, 많이 고마워!Facebook Like 버튼이 표시되지 않습니다.

<iframe src="http://www.facebook.com/plugins/like.php?href=https%3A%2F%2Fwww.yourpoetrypoint.tk&width&layout=standard&action=like&show_faces=true&share=true&height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; height:80px;" allowTransparency="true"></iframe> 

<iframe src="http://www.facebook.com/plugins/like.php?href=https%3A%2F%2Fwww.facebook.com%2FYourPoetryPoint&width&layout=standard&action=like&show_faces=true&share=true&height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; height:80px;" allowTransparency="true"></iframe> 

답변

0

귀하의 문제를 이해할 수 없습니다.

는 다음과 같은 PHP 코드를보십시오 :

<html> 
<body> 

<!-- Without echo or print --> 

<iframe src="https://www.facebook.com/plugins/like.php?href=https%3A%2F%2Fwww.yourpoetrypoint.tk&width&layout=standard&action=like&show_faces=true&share=true&height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; height:80px;" allowTransparency="true"></iframe> 
<iframe src="https://www.facebook.com/plugins/like.php?href=https%3A%2F%2Fwww.facebook.com%2FYourPoetryPoint&width&layout=standard&action=like&show_faces=true&share=true&height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; height:80px;" allowTransparency="true"></iframe> 

<?php 

//With echo 

echo '<iframe src="https://www.facebook.com/plugins/like.php?href=https%3A%2F%2Fwww.yourpoetrypoint.tk&width&layout=standard&action=like&show_faces=true&share=true&height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; height:80px;" allowTransparency="true"></iframe>'; 
echo '<iframe src="https://www.facebook.com/plugins/like.php?href=https%3A%2F%2Fwww.facebook.com%2FYourPoetryPoint&width&layout=standard&action=like&show_faces=true&share=true&height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; height:80px;" allowTransparency="true"></iframe>'; 

//With print 

print('<iframe src="https://www.facebook.com/plugins/like.php?href=https%3A%2F%2Fwww.yourpoetrypoint.tk&width&layout=standard&action=like&show_faces=true&share=true&height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; height:80px;" allowTransparency="true"></iframe>'); 
print('<iframe src="https://www.facebook.com/plugins/like.php?href=https%3A%2F%2Fwww.facebook.com%2FYourPoetryPoint&width&layout=standard&action=like&show_faces=true&share=true&height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; height:80px;" allowTransparency="true"></iframe>'); 

?> 

</body> 
</html> 

출력 :

output

+0

덕분에 많은 사랑을! –

관련 문제