View difference between Paste ID: wvzwVsWW and yrRbSGY6
SHOW: | | - or go back to the newest paste.
1
echo "
2-
<script type='text/javascript' src='http://j.maxmind.com/app/geoip.js'>
2+
<script type='text/javascript' src='http://j.maxmind.com/app/geoip.js'></script>
3-
</script>
3+
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
4
<script>
5-
document.write('<a href=downaux.php?nome=" . $row['nome'] . ".zip&cidade=' + geoip_city().replace(' ',';') + '&estado=' + geoip_region_name().replace(' ',';') + '&pais=' + geoip_country_name().replace(' ',';')  + '><img src=" . $row['nome'] . ".jpg width=60 height=60></a>');
5+
function saveLocation(){
6
  var url = 'downaux.php';
7
  var cidade = geoip_city();
8
  var pais = geoip_country_name();
9
  //outros
10
 $.post(url,{
11
    cidade: cidade,
12
    pais: pais
13
    //,demais campos
14
   },function(data){
15
	console.log('saved');
16
  })
17
}
18
<a href='javascript:saveLocation()' <img src=" . $row['nome'] . ".jpg width=60 height=60></a>');
19
</script>";