Advertisement
Guest User

Untitled

a guest
Dec 19th, 2015
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. while( $row = sqlsrv_fetch_array( $stmt, SQLSRV_FETCH_ASSOC) ) {
  2.     echo $row['price'];
  3. }
  4.  
  5. // wird geändert in
  6.  
  7. $gesamt = 0;
  8. while( $row = sqlsrv_fetch_array( $stmt, SQLSRV_FETCH_ASSOC) ) {
  9.     $gesamt += $row['price'];
  10.     echo $row['price'];
  11. }
  12.  
  13. echo 'Gesamtpreis: ' . $gesamt;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement