在Mysql PHP中插入两次的值

时间:2017-01-30 07:38:26

标签: php mysql amazon-ec2

function disburseby_cash($branch,$mode,$date,$amount){

    if ($amount>0){
        $sql="INSERT INTO `pettycash_deliver` SET `branch_id`='$branch',`petCashDel_mode`='$mode',`petCashdel_dt`='$date',`petCashdel_amt`='$amount', `branch_status`='Y',`petCashdel_akBrnch`='N' ";
        return $fin_res=(parent :: selectquery($sql)) ? "OK":"NO";   
    }else{
        return "fail";
    }
}

这是我的代码。当我尝试添加一些数据..它将插入双倍的时间。这个问题只会在一段时间内发生..请给出解决方案......

提前致谢....

0 个答案:

没有答案