Jump to content

Recommended Posts

This is my code for facebook like and share

<img src='<?php echo $path; ?>' height="500" width='500' alt='<?php echo $imgname; ?>' title='<div class="fb-like" data-href="http://mysite.com/<?php echo $path; ?>" data-layout="standard" data-action="like" data-show-faces="true" data-share="true"></div>'"></iframe>

Now $path is location to image, $imgname is name of image

When I look image for first time I can see like and share button, but when i do it again, i cant see like and share button.. Why?

Link to comment
https://forums.phpfreaks.com/topic/297698-facebook-like-and-share/
Share on other sites


<?php

....

$sql="SELECT * FROM `images` ORDER BY `id` DESC LIMIT $start,$end";
$rdata=mysqli_query($conn, $sql);
while($res=mysqli_fetch_array($rdata))
{
$imgname=$res['image'];
$path = 'img/'.$imgname;

?>

<img src='<?php echo $path; ?>' height="500" width='500' alt='<?php echo $imgname; ?>' title='<div class="fb-like" data-href="http://site.com/<?php echo $path; ?>" data-layout="standard" data-action="like" data-show-faces="true" data-share="true"></div>'>

<?php

}


?>

 

  • 2 months later...
  • 2 weeks later...
This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.