Help for this page

Select Code to Download


  1. or download this
    $dbh->do("UPDATE INV SET SOLD=\"$updy\" WHERE CODE==$CODE");
    
  2. or download this
    $sth=$dbh->prepare("UPDATE INV SET SOLD=? WHERE CODE==?");
    $sth->execute($updy,$CODE); # Why is that var all UPcase, BTW?