我插入到我的数据库中时使用mysqli预处理语句抛出错误

时间:2013-12-27 19:29:56

标签: php mysql mysqli prepared-statement

根据之前的帖子,我正在努力学习准备好的陈述以正确清理所有内容。

这是我的表格:

<form name="login" action="regi.php" method="post" accept-charset="utf-8">
        <label for="username">Username: </label><br />
            <input type="username" name="username" placeholder="Handle" required><br />
            <input type="hidden" name="sign_up_date" value="<?php echo $_POST['sign_up_date'] ?>">
        <label for="usermail">Email: </label><br />
            <input type="email" name="usermail" placeholder="yourname@email.com" required><br />
        <label for="password">Password: </label><br />
            <input type="password" name="password" placeholder="password" required><br />
            <input type="submit" value="Login">
    </form>

这是regi.php页面:

include("mysql_connect.php");
include("classes/insert.php");


if (!mysqli_query($mysqli,$stmt))
  {
  die('Error: ' . mysqli_error($mysqli));
  }
echo "1 record added";

mysqli_close($mysqli);

这是我的insert.php页面:

$user = $_POST['username'];
$email = $_POST['usermail'];

$stmt = $mysqli->stmt_init();
if (!$stmt) {
    echo "Init failed";
} else {
    $cmd = "INSERT INTO people (username, email, sign_up_date) VALUES (?, ?, NOW() )";
    if ($stmt->prepare($cmd)) {
        $stmt->bind_param('ssd', $user, $email );
        $stmt->execute();

        echo $stmt->affected_rows . "row(s) inserted";

        $stmt->close();

    } else {
        echo "Prepare failed";
    }   
}

这是我的错误消息:

Localhost通过UNIX socket 0row(s)insertedError:

我认为我在insert.php页面上做错了什么?

非常感谢任何帮助。谢谢。

1 个答案:

答案 0 :(得分:0)

您可以将查询编写为存储过程...这样,实际查询将存储在数据库中,而不是存储在您的php文件中。

另外,根据您现在所拥有的内容,您似乎不会将正确的值插入到表格的右侧列中

这是存储过程方法

//更新你的php文件,以便读取以下变量

$cmd = call `people`.`procedurename` (?,?)";
$stmt->bind_param($user, $email ); 

登录mysql并使用此代码

创建存储过程
DELIMITER $$
CREATE PROCEDURE `people`.`procedurename` (
IN username VARCHAR(50),
IN email VARCHAR(50)
)
BEGIN
INSERT INTO people (username, email, sign_up_date) VALUES (username, email, NOW());
END
$$
祝你好运:)