- Home
- Categorie
- Coding e Sistemistica
- PHP
- Sommare campi tabella
-
Sommare campi tabella
Salve a tutti, ho una tabella che si chiama utenti e vorrei sommare tutti i campi che si chiamano "id".
-
Dovrebbe essere qualcosa tipo il seguente codice
[PHP]$query = ' SELECT * FROM utenti ';
$result = mysql_query($query, $db) or die (mysql_error($db));
$somma = 0;
while ($row = mysql_fetch_array($result)) {
$somma += (int) $row[id];
} [/PHP]
-
Per la parte in html che utilizzo?
-
Puoi usare anche una
SELECT SUM(id) as totale FROM utenti