I am getting this error when trying to subtract one value from another to create a new value to return to a database. Help would be most a Kind!
Code:
/ Get the currQty of Inventory item and set it as old Take off used stock and post back to the database table invitems/
$oldQty=$row_Recordset2['currQty_invItem'];
$usedQty=$_GET['qty_servInv'];
$newQty= $oldQty - $usedQty;
endCode:
The error is on the last line.