-3

我正在建立的一个网站有一个小的管理面板。所以该网站有一个登录页面,但没有注册页面,因为登录 1 个帐户只需要 1 个电子邮件+密码。所以我想通过 sql 插入这个 1 帐户的凭据。密码需要经过 md5 哈希处理。这是我写的sql代码,但我得到一个错误:

insert into tblmember (memberEmail, memberWachtwoord) 
        values (
        '".mysqli_real_escape_string('exampleemail')."',
        '".hash('md5', mysqli_real_escape_string('examplepassword'))."'
        );

exampleemail 和 examplepassword 只是文本,没有变量。这是我得到的错误:

error: #1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'exampleemail')."', '".hash('md5'('examplepassword'))."' )' at line 3
4

1 回答 1

1

如果你剥离 PHP 代码,你会得到这个:

insert into tblmember (memberEmail, memberWachtwoord) values ('exampleemail', md5('examplepassword'));

于 2013-04-03T13:12:23.500 回答