// Connexion odbc $host = "Bibli"; $user = "etd"; $password = "etd"; $conn = odbc_connect($host,$user,$password) or die ("raté"); $query = "Select nom from auteur order by nom for xml"; $succ = odbc_exec($conn,$query); $nom = odbc_result($succ,1); echo $nom; ?>