Jump to content

Facebook like and share


Ex1t

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
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

}


?>

 

Link to comment
Share on other sites

Couple things here. First and foremost, print the value of $path to screen - that way you can see (and show us) exactly what the variable $path contains.

 

Secondly, why are you trying to put a div in the title attribute of an image?

Link to comment
Share on other sites

  • 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.