Help for this page

Select Code to Download


  1. or download this
    print "NO ITEMS IN CART" unless $sth->fetchrow_array();
  2. or download this
    my @fields = $sth->fetchrow_array();
    if (!@fields) {
      print "NO ITEMS IN CART";
    ...
        @fields = $sth->fetchrow_array();
      }
    }