Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- function get_string_between($string, $start, $end){
- $string = " ".$string;
- $ini = strpos($string,$start);
- if ($ini == 0) return "";
- $ini += strlen($start);
- $len = strpos($string,$end,$ini) - $ini;
- return substr($string,$ini,$len);
- }
- $ip='32.74.212.166'; //insert player's ip here
- $flag='http://www.turbosliders.com/sites/all/themes/turbosliders/images/country/'.get_string_between(file_get_contents('http://www.geoplugin.net/xml.gp?ip='.$ip),'<geoplugin_countryCode>','</geoplugin_countryCode>').'.GIF';
- echo '<img src='.$flag.'>';
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement