Codice PHP:
while($row_carrello mysql_fetch_array($sql))
{
    
$tot $row_carrello['prezzo_prd']*$row_carrello['quantita'];
    
    
// tuo codice vario
    
    // alla fine registri $tot in un array
    
$tot_array[] = $tot;
}

$prezzo_totale array_sum($tot_array);
print(
"Il prezzo totale è: ".$prezzo_totale);