`SI_ID is` the Auto Increment Field
`SI_Reg_No` i the student registration number
`SI_Ins_NO` is the installment number
`SI_Due_Date` is the due date of that installment
`SI_Paid_Amount` is the paid amount of each installment
当我的付款表单按钮单击时,我想更新 SI_Paid_Amount 字段。当我单击下面的付款字段时,表数据已经加载而没有 SI_Paid_Amount。
$amount = 5000.00 // this is what i send to the db for update `SI_Paid_Amount`
如果SI_paid_Amount
应该像下面这样更新
从一开始SI_Ins_No
,如果 SI_Ins_amount 大于$amount
它应该更新 Si_Paid_Amount 字段并且它应该停止循环。像下面这样
如果 SI_Ins_Amount 小于发送金额,则应更新第二个 SI_Ins_No 相关SI_Paid_Amount
列。并且在将数据发送给我们时,SI_Paid_Amount
我们希望SI_Paid_Amounts
根据之前检查金额SI_Ins_No
。所以我的问题是我如何用 php 来做到这一点?