ciao
vi linko questa pagina
http://www.hotelspagna.net/api/panor...43037340405883 in questa pagina uso le api di panoramio per visualizzare le immagini
c'è un errore che non so come potrei sistemare .. manca una { alla riga 53 però non la posso aggiungere perchè il codice viene generato dallo script ..

questo è il cod della pagina:

Codice PHP:
PanoURL "http://www.panoramio.com/map/get_panoramas.php?order=popularity&size=square&set=full&from=0&to=21&minx="&x_geolongMin&"&miny="&x_geolatMin&"&maxx="&x_geolongMax&"&maxy="&x_geolatMax
'response.write (PanoURL)
'
Create the xml object
Set GetConnection 
CreateObject("Microsoft.XMLHTTP")

'Conect to Panoramio…
GetConnection.Open "get", PanoURL , False
GetConnection.Send

'
PanoResponse is the response we will get when visiting PanoURL
PanoResponse 
GetConnection.responseText

Set GetConnection 
Nothing
PanoResponse 
replace(PanoResponse ,"""","'"'not mandatory…

%>

<body>

<SCRIPT type="text/javascript">
/* elementi variabili */
ncol=7;
// numero colonne - 11 numero di foto is the limit we want… change it here AND in the PanoUrl if needed
nfoto=20;
document.write("<table cellspacing=\"2\" cellpadding=\"2\" border=\"1\">");

var myFirstJSON = <%=PanoResponse %>;
    for (i=1; i<=nfoto; i++){
    
    if (i%ncol==1) document.write("<tr>");
        document.writeln("<td valign='
middle' align='center'>[url='http://mw2.google.com/mw-panoramio/photos/medium/"+myFirstJSON.photos[i].photo_id+".jpg'][img]"+myFirstJSON.photos[i].photo_file_url+"[/img][/url]");
        
document.writeln("</td>");
     if (
i%ncol==0document.writeln("</tr>");
    }
    
document.writeln("</table>");

</script>






[img]http://www.ff.net/img/blank.gif[/img]
<div align="center" id="DivContent"></div>
<div align="center" id="desc"><%response.write ("Scegli Immagine")%></div>

</div>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td align="center" valign="middle">
[url='http://www.panoramio.com'][img]http://www.ff.net/img/panoramio.jpg[/img][/url]</td>
  </tr>
</table>


</body>
</html> 
comepotrei risolvere...