duanfengtuo6012 2015-03-11 12:10
浏览 66
已采纳

在非对象上调用成员函数bindValue()[duplicate]

This question already has an answer here:

So I'm trying to create a prepared insert statement to a database for a web app. For the registration system, I'm feeding in values using post, then redirecting to a webpage to do the processing. However, I keep getting the error 'Call to a member function bindValue() on a non-object in /path/to/file.php on line 18, the first reference to bindValue(). The code is:

<?php

 session_start();

 require "database.php";
 $db = new Database("bills.db");

 $admin_password = $_POST['admin_password'];
 $admin_email = $_POST['admin'];
 $salt = sha1(time());
 $group_name = $_POST['group_name'];
 $group_password = $_POST['password'];

 $admin_hash = sha1($salt."--".$admin_password);
 $group_hash = sha1($salt."--".$group_password);

$stmt = $db->prepare("INSERT INTO billgroup VALUES (NULL, :adminemail, :adminpassword_hash, :groupname, :password_hash, :salt)");
$stmt->bindValue(':adminemail', $admin_email, SQLITE3_TEXT);
$stmt->bindValue(':adminpassword_hash', $admin_hash, SQLITE3_TEXT);
$stmt->bindValue(':groupname', $group_name, SQLITE3_TEXT);
$stmt->bindValue(':password_hash', $group_hash, SQLITE3_TEXT);
$stmt->bindValue(':salt', $salt, SQLITE3_TEXT);
$results = $stmt->execute();




 $stmt = $db->prepare("SELECT * FROM billgroup WHERE adminemail = :adminemail");
 $stmt->bindValue(':adminemail', $admin_email, SQLITE3_TEXT);
 $users = $stmt->execute();
 $user = $users->fetchArray();
...
</div>
  • 写回答

1条回答 默认 最新

  • dongniaocheng3773 2015-03-13 19:12
    关注

    You want connect to a sqlite database but you have:

    $db = new Database("bills.db");
    

    You must know that you must have something like this:

    $db = new PDO('sqlite:bills.db');
    

    And change in all the bindValue calls the SQLITE3_TEXT to PDO::PARAM_STR like this:

    $stmt->bindValue(':adminemail', $admin_email, SQLITE3_TEXT);
    

    to:

    $stmt->bindValue(':adminemail', $admin_email, PDO::PARAM_STR);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 gdf格式的脑电数据如何处理matlab
  • ¥20 重新写的代码替换了之后运行hbuliderx就这样了
  • ¥100 监控抖音用户作品更新可以微信公众号提醒
  • ¥15 UE5 如何可以不渲染HDRIBackdrop背景
  • ¥70 2048小游戏毕设项目
  • ¥20 mysql架构,按照姓名分表
  • ¥15 MATLAB实现区间[a,b]上的Gauss-Legendre积分
  • ¥15 Macbookpro 连接热点正常上网,连接不了Wi-Fi。
  • ¥15 delphi webbrowser组件网页下拉菜单自动选择问题
  • ¥15 linux驱动,linux应用,多线程