php - PDO bindParam 不工作 "bindParam() on a non-object"

标签 php mysql database pdo mollie

我正在为我正在创建的 CMS 试用 Mollie 支付处理器,但我遇到了问题。当我尝试将数据输入 MySQL 数据库时,它并没有这样做。我收到此错误:

Fatal error: Call to a member function bindParam() on a non-object in /home/ubuntu/workspace/examples/01-new-payment.php on line 83

这是完整的代码:

<?php
/*
 * Example 1 - How to prepare a new payment with the Mollie API.
 */

$amount      = 100.50;
$description = "Booking for Villa Hijau";
$days        = 10;
$name        = "####";
$email       = "####";

try {
    /*
     * Initialize the Mollie API library with your API key.
     *
     * See: https://www.mollie.com/beheer/account/profielen/
     */
    include "initialize.php";

    /*
     * Generate a unique order id for this example. It is important to include this unique attribute
     * in the redirectUrl (below) so a proper return page can be shown to the customer.
     */
    $order_id = time();

    /*
     * Determine the url parts to these example files.
     */
    $protocol = isset($_SERVER['HTTPS']) && strcasecmp('off', $_SERVER['HTTPS']) !== 0 ? "https" : "http";
    $hostname = $_SERVER['HTTP_HOST'];
    $path     = dirname(isset($_SERVER['REQUEST_URI']) ? $_SERVER['REQUEST_URI'] : $_SERVER['PHP_SELF']);

    /*
     * Payment parameters:
     *   amount        Amount in EUROs. This example creates a € 10,- payment.
     *   description   Description of the payment.
     *   redirectUrl   Redirect location. The customer will be redirected there after the payment.
     *   webhookUrl    Webhook location, used to report when the payment changes state.
     *   metadata      Custom metadata that is stored with the payment.
     */
    $payment = $mollie->payments->create(array(
        "amount" => $amount,
        "description" => $description,
        "redirectUrl" => "{$protocol}://{$hostname}{$path}/03-return-page.php?order_id={$order_id}",
        "webhookUrl" => "{$protocol}://{$hostname}{$path}/02-webhook-verification.php",
        "metadata" => array(
            "order_id" => $order_id
        )
    ));

    /*
     * In this example we store the order with its payment status in a database.
     */
    database_write($order_id, $payment->status, $amount, $description, $days, $name, $email);

    /*
     * Send the customer off to complete the payment.
     */
    header("Location: " . $payment->getPaymentUrl());
}
catch (Mollie_API_Exception $e) {
    echo "API call failed: " . htmlspecialchars($e->getMessage());
}


/*
 * NOTE: This example uses a text file as a database. Please use a real database like MySQL in production code.
 */
function database_write($order_id, $status, $amount, $description, $days, $name, $email)
{
    $db_user  = 'mollie';
    $db_pass  = '####';
    $order_id = intval($order_id);
    // Use $status to get the order status
    $dbh      = new PDO('mysql:host=localhost;dbname=orders', $db_user, $db_pass);
    $stmt     = "INSERT INTO order (id, order_name, order_description, order_amount, order_customer, order_customer_email, order_status) VALUES (?,?,?,?,?,?,?)";
    if($stmt){
    $stmt->bindParam($order_id,$name,$description,$amount,$name,$email,$status);
    $stmt->execute();
    }
}

提前致谢! ~ 里克

最佳答案

你应该准备你的sql语句

 $stmt = $dbh->prepare( "INSERT INTO order 
  (id, order_name, order_description, order_amount, order_customer, 
 order_customer_email, order_status) 
           VALUES (?,?,?,?,?,?,?)";

像 bu Fred-ii 建议的那样要小心,因为你使用的是“订单”这个词,

这是一个MySQL保留字,

那么你应该在这个术语周围使用反义词

 `order`  

关于php - PDO bindParam 不工作 "bindParam() on a non-object",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38553265/

相关文章:

php - 没有让 wordpress nonce 与 wp-rest api 应用程序一起工作

php - 如何在 while 循环中通过电子邮件发送 php mysql 查询结果?

python - 将字典作为用户输入,然后保存到json文件中

mysql - 从1开始截断后插入;但删除后插入会从之前的值恢复

mysql - SQL查询使用EXISTS选择满足条件的记录

php - 如何使用 PHP 和 MYSQL 查看以 BLOB 格式存储的图像

PHP 登录屏幕不会移动到下一页

mysql - 带有 group by 的特定 SQL 无法正常工作

mysql - 内连接 3 个表 pl/sql

mysql - 如何使用单个查询从两个表中获取结果