ecco il codice...2 righe...
<?php
$co = mysql_connect("localhost", " ", " ") or die("Connessione non riuscita: " . mysql_error());
$sql = mysql_query("select * FROM test.isso
WHERE nome=' ' and cognome=' ' and prov=' ';
echo "
<table border>
<tr><th colspan='9'>DATI DI : $nome $cognome</tr>
<tr><th>nome<th>cognome<th>citta'<th>prov.<th>tele fono(1)<th>telefono(2)<th>telefono(3)<th>indirizzo <th>works</tr>
";
while ($riga=mysql_fetch_row($sql))
echo "<tr><td>$riga[0]<td>$riga[1]<td>$riga[2]<td>$riga[3]<td>$riga[4]<td>$riga[5]<td>$riga[6]<td>$riga[7]<td>$riga[8]<td>";
echo "</table>";
?>
grazie..........