Is it possible to update a table via DAL when 2 fields link the original and target table?
Global $conn,$strUpd
$strUpd = "Update stock set quantity = ".$values["quantity"]." where productID = ".$values["productID"]." And warehouseID = ".$values["warehouseID"]
Db_exec($strUpd, $conn)
how can I translate this code to DAL??
thanks in advance,
Nir.