Advertisement
nucklear

Ubecart - Imprimir la cantidad de items

Apr 26th, 2012
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1.  <?php
  2.                          $subtotal = 0;
  3.                             foreach (uc_cart_get_contents() as $item) {
  4.                               $subtotal += $item->qty;
  5.                             }
  6.                           print $subtotal;
  7.                          ?> Items
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement