Search results

  1. wanipiro

    Display ads / text based on visitor country

    <?php $myip=$_SERVER['REMOTE_ADDR']; $string = file_get_contents("https://get.apigeoip.com/xml/".$myip); $xml = simplexml_load_string($string); $country=$xml->CountryCode; if (strpos($country, 'AD') !== false) { echo 'ADS Andorra'; } elseif (strpos($country, 'AE') !== false) { echo 'ADS United...
  2. wanipiro

    [sharing] Find You IP & Domain Info - php

    find your ip info: php code: <?php $myip=$_SERVER['REMOTE_ADDR']; $string = file_get_contents("https://get.apigeoip.com/json/".$myip); $json_a = json_decode($string,true); echo '<table>'; foreach ($json_a as $key => $value){ echo '<tr><td>'.$key . '</td><td> : ' ...
  3. wanipiro

    [Help] my lyrics site (4 years old, 2.5+ Million posts) but get little traffic

    Hello, I'm kind of desperate now. it's almost 4 years ago i start this site. and even with more than 2.5 million lyrics, this site get very low traffic (around 700-1k unique hits/day) url: bit.ly/lyricsdb please advice me. what should i do to increase my traffic. thanks
Back
Top