Rilancio l'sos.. mi serve proprio che carichi i dati da php 
codice:
<?php
function nomi($paese,$sottocat){
$query = "SELECT * FROM artista WHERE (id_paese='$paese' && id_sottocat='$sottocat') ORDER BY nome ASC";
$ris = mysql_query($query);
$stringa = "artisti=";
while($r = mysql_fetch_array($ris)){
$id = $r["id"];
$nome = $r["nome"];
$stringa.="$id-$nome|";
}
return $stringa;
}
function info($id){
$query = "SELECT * FROM artista WHERE (id='$id')";
$ris = mysql_query($query);
$r = mysql_fetch_array($ris);
$nome = $r["nome"];
$info = $r["info"];
$curr = $r["curriculum"];
$indirizzo = $r["indirizzo"];
$mail = $r["mail"];
$tel = $r["telefono"];
$foto = $r["foto"];
$fotos = split("-",$foto);
$foto1 = $fotos[0];
$foto2 = $fotos[1];
$foto3 = $fotos[2];
$stringa = "nome=$nome&info=$info&curriculum=$curr&foto=$foto1-$foto2-$foto3&indirizzo=$indirizzo&mail=$mail&telefono=$tel";
return $stringa;
}
/**
*
*
* @version $Id$
* @copyright 2005
**/
?>
devo far prendere la lista di nomi al list box usando questo file php...
Sono nel panico più totale..
Help please