I have a PHP code for the counter but I need to add something to the counter is as follows:
- 1k
- 1100k
- 1200k etc
- 2k
- 2100k etc. and
- 2m
- 2500m
For now I have this counter done in PHP.
<?php function get_likes($url) {
$json_string = file_get_contents('http://graph.facebook.com/?ids=' . $url);
$json = json_decode($json_string, true);
return intval( $json[$url]['shares'] );
}?>
Show with
<?php echo get_likes(http://url...); ?>