gpt4 book ai didi

php - 错误号 : 1048 Column 'btc' cannot be null

转载 作者:行者123 更新时间:2023-11-29 16:54:31 25 4
gpt4 key购买 nike

此代码显示

Error Number: 1048

“btc”列不能为空

但实际上我发送的一切都是正确的,我什至尝试了带有 URL 的参数,但它仍然说 btc 不能为空。怎么了

    $date='';
$timezone = "Asia/Karachi";
if(function_exists('date_default_timezone_set'))
date_default_timezone_set($timezone);
$date=date('d-m-Y | H:i:s');
$data=array(
'username' => $this->session->userdata('username'),
'btc' => $this->input->post('btc'),
'networkfee' => $this->input->post('networkfee'),
'address' => $this->input->post('address'),
'riseupfee' => $this->input->post('riseupfee'),
'date' => $date,
'status' => 'Sent'
);
$this->load->model('ajax_model');
$data = $this->ajax_model->withdraw_btc($data);

发送ajax请求。

   $.ajax({
type:'POST',
data:{btc: '0.0001', address: 'xxxx', risupfee: '0.001',
networkfee: '0.0001'},
url:'<?php echo site_url('ajax/withdraw_btc'); ?>',
success: function(result){
alert(result);


}

最佳答案

检查“btc”行的数据库设置。您可能发送了错误的类型

关于php - 错误号 : 1048 Column 'btc' cannot be null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52630657/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com