作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
<分区>
我有以下代码:
$statement = $mysqli->prepare("INSERT INTO `paypal_transactions` (`txn_id`, `payer_email`, `mc_gross`, `mc_currency`, `expires`, `userid`) VALUES (?, ?, ?, ?, " . (time() + 2678400) . ", ?)");
file_put_contents('error.txt', $mysqli->error . mysqli_error($mysqli));
$statement->bind_param('ssdsi', $txn_id, $payer_email, $payment_amount, $payment_currency, $userid);
$statement->execute();
error.txt 每次都是空白,这是我在 error_log 文件中看到的:
[02-Jul-2013 09:08:15 America/Denver] PHP Fatal error:
Call to a member function bind_param() on a non-object in /home4/site/public_html/paypal.php on line 96
指的是上面的代码块。
我对此束手无策,我已经尝试修复它几个小时了,但它就是行不通。我找不到我的 sql 查询的任何问题,我正在失去理智试图找出问题所在。
我是一名优秀的程序员,十分优秀!