0

我在使用 iframe 之类的 Facebook 时遇到问题。我希望能够喜欢每个 id。问题是当我把这段代码放在我的网站上时,点击一个帖子,所有帖子都被点赞。

    $sql = "SELECT * FROM $tbl_name ORDER BY id DESC LIMIT $start, $limit";
if(isset($_GET['id']))
    {
    $id=intval($_GET['id']);
    $sql = "SELECT * FROM $tbl_name WHERE id=$id";
    }
$result = mysql_query($sql);

        while($row = mysql_fetch_array($result))
    {
    echo "<center><a href ='single_joke.php?id=".$row['id']."'>" .$row['Title']."</a></center>";
    echo "<br>";
    echo nl2br($row["VicText"]);
    ?>
    <iframe src="https://www.facebook.com/plugins/like.php?href=http://www.keevik.com/vicevi.php?id=<?php echo $row['id']; ?>"
    scrolling="no" frameborder="0"
    style="border:none; width:450px; height:80px"></iframe>
    <?php
    echo "<hr>";
    }
4

1 回答 1

1

但是,您需要urlencode()您的 URL,因为如果您在 URL 中添加第二个参数,http 服务器会将第二个参数解释为 facebook URL 的参数,而不是您的 ;)

于 2013-04-23T13:54:15.800 回答