phpbar.de logo

Mailinglisten-Archive

AW: [php] summieren der keys im array

AW: [php] summieren der keys im array

Vorwerk, Andreas php_(at)_phpcenter.de
Fri, 25 May 2001 14:51:57 +0200


> -----Urspr=FCngliche Nachricht-----
> Von:	Boris Penck [SMTP:boris_(at)_mediatis.de]
> Gesendet am:	Freitag, 25. Mai 2001 14:44
> An:	php_(at)_phpcenter.de
> Betreff:	Re: [php] summieren der keys im array
>=20
> > $sql =3D 'select day as dat,sum(count) as pi,sum(visits) as vi from
> > pageviews_archiv where day > from_days(to_days(curdate())-32) group =
by
> day
> > order by day';
> >
> > $db->query($sql);
> > echo "<table border=3D0 width=3D300><tr
> > bgcolor=3D#999966>";
> > echo "<td width=3D33%>Datum</td><td
> > width=3D33%>Pi</td><td width=3D33%>Vi</td></tr>";
> > echo "</table>";
> >
> > while($row =3D $db->fetch_array()) {
> > echo "<table border=3D0 width=3D300><tr
> > bgcolor=3D#ffffcc>";
> > echo "<td width=3D33%>".$row["dat"]."</td>";
> > echo "<td width=3D33%>".$row["pi"]."</td>";
> > echo "<td width=3D33%>".$row["vi"]."</td>";
> > echo "</tr></table>";
> > }
> > soweit so gut...jetzt m=F6chte ich die summen der $row["pi"] und
> > $row["vi"]...ausgerechnet und unter die tabelle einsetzen...kann =
mir
> jemand
> > einen tip geben...???
>=20
> while($row =3D $db->fetch_array()) {
> $pi +=3D $row["pi"];
> $vi +=3D $row["vi"];
> echo "<table border=3D0 width=3D300><tr
> bgcolor=3D#ffffcc>";
> echo "<td width=3D33%>".$row["dat"]."</td>";
> echo "<td width=3D33%>".$row["pi"]."</td>";
> echo "<td width=3D33%>".$row["vi"]."</td>";
> echo "</tr></table>";
> }
>=20
> print "Total PI: ".$pi;
> print "Total VI: ".$vi;
>=20
	[Vorwerk, Andreas]  danke,,,,funzt einwandfrei

	gruss andreas=20


> --=20
> ** http://www.php-center.de **
> Die PHP-Liste: mailto: php_(at)_phpcenter.de
> http://lists.phpcenter.de/mailman/listinfo/php


php::bar PHP Wiki   -   Listenarchive