I am using php code to get the Like button on the screen.
while($rec = mysql_fetch_array( $result, MYSQL_ASSOC ))
{
echo '<div class="fb-like" data-href="http://example.com/view.php?pic_id='.$rec['IMAGE'].'" data-send="false" data-layout="button_count" data-width="450" data-show-faces="false" data-font="arial"></div>';
}
Now this is giving me 50 LIKE BUTTON on one page just as I need .The Problem is that it loads too slow , Is there any way to make load it fast ?
What i feel is when facebook FB.init is called then these Button's get rendered. So there are 50 request going from my server and getting
50 like button CSS + 50 Images of same button.
Is there a way to load it fast ?