Help for this page

Select Code to Download


  1. or download this
    my $dbh = $db->prepare("SELECT balance FROM Table1 WHERE username=? an
    +d balance < '-.01'");
    $dbh->execute($authuser);
    my ($balance_due) = $dbh->fetchrow_array;
    
  2. or download this
    $balance_due = -$balance_due
    
    # or
    
    $balance_due = $balance_due * -1;
    
  3. or download this
    $balance_due =~ s/-//;