Codice PHP:$query = "SELECT * FROM cart";
$result = mysql_query($query);
$totale = 0;
while ($array = mysql_fetch_assoc($result)) {
$totale += $array['prezzo'];
echo "$array[id] - $array[prezzo]
";
}
Codice PHP:$query = "SELECT * FROM cart";
$result = mysql_query($query);
$totale = 0;
while ($array = mysql_fetch_assoc($result)) {
$totale += $array['prezzo'];
echo "$array[id] - $array[prezzo]
";
}