in this case, I would not store the total in the database at all, i would either calculate the total in the recordsets i create:
SELECT *, FORMAT(price * qty,2) AS total FROM tablename
or i would calcualte it in the php:
<?php echo($row_Recordset1['price'] * $row_Recordset1['qty']); ?>