Ciao, scusatemi... non so se è il posto giusto per questa domanda casomai spostatemi...

o questo codice php dopo selezione di righe da db SQL

Codice PHP:
while ($row sqlsrv_fetch_array($result)) {


    
    
$texthtml .=  "<div class=\"codice\">";
    
$texthtml .=  $row['IdLavoro'];
    
$texthtml .=  "
"
;
//    $texthtml .=  "";
    
$texthtml .= "</div>";
    
$texthtml .=  "<div class=\"nome\">";
    
$texthtml .=  $row['prodotto'];
    
$texthtml .= "</div>";
    
$texthtml .=  "<div class=\"tirapre\">";
    
$texthtml .=  $row['tiratura1'];
    
$texthtml .=  "-";
    
$texthtml .=  $row['tiratura2'];
    
$texthtml .=  "-";
    
$texthtml .=  $row['tiratura3'];
    
$texthtml .=  "-";
    
$texthtml .=  $row['tiratura4'];
    
$texthtml .=  "//";
    
$texthtml .=  $row['prezzoUnitario1'];
    
$texthtml .=  "-";
    
$texthtml .=  $row['prezzoUnitario2'];
    
$texthtml .=  "-";
    
$texthtml .=  $row['prezzoUnitario3'];
    
$texthtml .=  "-";
    
$texthtml .=  $row['prezzoUnitario4'];
    
$texthtml .= "</div>";
 


Se metto su tutti i div il parametro float: left mi si pianta restando in carica continua e poi mi va in timeout
Se all'ultimo DIV tolgo il float la pagina si carica subito


Se qualcuno sa dirmi perchè.... grazie raga