PHP/ADO 报名提交
PHP/ADO Registration Submission
( ! ) Fatal error: Uncaught PDOException: SQLSTATE[HY000]: General
error: 1366 Incorrect integer value: '' for column 'cust_b_country' at
row 1 in C:\wamp\www\ecommerce-website-master\registration.php on line
163 ( ! ) PDOException: SQLSTATE[HY000]: General error: 1366 Incorrect
integer value: '' for column 'cust_b_country' at row 1 in
C:\wamp\www\ecommerce-website-master\registration.php on line 163
// saving into the database
$statement = $pdo->prepare("INSERT INTO tbl_customer (
cust_name,
cust_cname,
cust_email,
cust_phone,
cust_country,
cust_address,
cust_city,
cust_state,
cust_zip,
cust_b_name,
cust_b_cname,
cust_b_phone,
cust_b_country,
cust_b_address,
cust_b_city,
cust_b_state,
cust_b_zip,
cust_s_name,
cust_s_cname,
cust_s_phone,
cust_s_country,
cust_s_address,
cust_s_city,
cust_s_state,
cust_s_zip,
cust_password,
cust_token,
cust_datetime,
cust_timestamp,
cust_status
) VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)");
$statement->execute(array(
strip_tags($_POST['cust_name']),
strip_tags($_POST['cust_cname']),
strip_tags($_POST['cust_email']),
strip_tags($_POST['cust_phone']),
strip_tags($_POST['cust_country']),
strip_tags($_POST['cust_address']),
strip_tags($_POST['cust_city']),
strip_tags($_POST['cust_state']),
strip_tags($_POST['cust_zip']),
'',
'',
'',
'',
'',
'',
'',
'',
'',
'',
'',
'',
'',
'',
'',
'',
md5($_POST['cust_password']),
$token,
$cust_datetime,
$cust_timestamp,
0
));
它说 $_POST['cust_country'] 不是整数值
您可以尝试(int) $_POST['cust_country']
将变量类型转换为整数
cust_b_country
是整型字段,根据报错。所以你不能像你一样将它设置为空字符串(''
)。要么将其设置为 NULL
(如果该列允许 NULL),要么设置为某个值,例如 0
。或者,如果它配置了默认值,则完全不将其包含在 INSERT
查询中,然后它会自动获得其默认值。
( ! ) Fatal error: Uncaught PDOException: SQLSTATE[HY000]: General error: 1366 Incorrect integer value: '' for column 'cust_b_country' at row 1 in C:\wamp\www\ecommerce-website-master\registration.php on line
163 ( ! ) PDOException: SQLSTATE[HY000]: General error: 1366 Incorrect integer value: '' for column 'cust_b_country' at row 1 in C:\wamp\www\ecommerce-website-master\registration.php on line 163
// saving into the database
$statement = $pdo->prepare("INSERT INTO tbl_customer (
cust_name,
cust_cname,
cust_email,
cust_phone,
cust_country,
cust_address,
cust_city,
cust_state,
cust_zip,
cust_b_name,
cust_b_cname,
cust_b_phone,
cust_b_country,
cust_b_address,
cust_b_city,
cust_b_state,
cust_b_zip,
cust_s_name,
cust_s_cname,
cust_s_phone,
cust_s_country,
cust_s_address,
cust_s_city,
cust_s_state,
cust_s_zip,
cust_password,
cust_token,
cust_datetime,
cust_timestamp,
cust_status
) VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)");
$statement->execute(array(
strip_tags($_POST['cust_name']),
strip_tags($_POST['cust_cname']),
strip_tags($_POST['cust_email']),
strip_tags($_POST['cust_phone']),
strip_tags($_POST['cust_country']),
strip_tags($_POST['cust_address']),
strip_tags($_POST['cust_city']),
strip_tags($_POST['cust_state']),
strip_tags($_POST['cust_zip']),
'',
'',
'',
'',
'',
'',
'',
'',
'',
'',
'',
'',
'',
'',
'',
'',
md5($_POST['cust_password']),
$token,
$cust_datetime,
$cust_timestamp,
0
));
它说 $_POST['cust_country'] 不是整数值
您可以尝试(int) $_POST['cust_country']
将变量类型转换为整数
cust_b_country
是整型字段,根据报错。所以你不能像你一样将它设置为空字符串(''
)。要么将其设置为 NULL
(如果该列允许 NULL),要么设置为某个值,例如 0
。或者,如果它配置了默认值,则完全不将其包含在 INSERT
查询中,然后它会自动获得其默认值。