ciao

per creare un tabella da più record estratti puoi fare cosi:
Codice PHP:

$hostname_strat 
"localhost"
$database_strat "strategie"
$username_strat "strategie"
$password_strat "strategie"
$strat mysql_connect($hostname_strat$username_strat$password_strat) or die(mysql_error()); 


mysql_select_db($database_strat);

$sql mysql_query("SELECT " .$lingua ." FROM servizi"); 

$str "";

$str .= "<table>";
while(
$rowstat mysql_fetch_array($sql);){
   
$str .= "<tr>";
   
$str .= "<td>{$row['campo1']}</td>";
   
$str .= "<td>{$row['campo2']}</td>";
   
$str .= "</tr>";
}
$str .= "</table>";

echo 
$str
richiamando il mysql_fetch_array tramite il ciclo while, vengono create tante "righe" quanti sono record nel db