gpt4 book ai didi

我不明白的 phpmyAdmin 错误

转载 作者:行者123 更新时间:2023-11-29 01:52:34 24 4
gpt4 key购买 nike

今天我用的是this tutorial关于使用 phpmyAdmin 创建一个注册论坛。在我到达这行代码之前一切顺利,我应该在 SQL 中输入它。

1. INSERT INTO
2. users(user_name, user_pass, user_email ,user_date, user_level)
3. VALUES('" . mysql_real_escape_string($_POST['user_name']) . "',
4. '" . sha1($_POST['user_pass']) . "',
5. '" . mysql_real_escape_string($_POST['user_email']) . "',
6. NOW(),
7. 0);

所以我在 phpmyAdmin 中输入了它,但出现了这个错误:

1064 - You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'user_name']) . "', '" . sha1($_POST['user_pass']) . "', '" . mys' at line 3

这是我用于 signup.php 的 PHP

<?php
//signup.php
include 'connect.php';
include 'header.php';

echo '<h3>Sign up</h3>';

if($_SERVER['REQUEST_METHOD'] != 'POST')
{
/*the form hasn't been posted yet, display it
note that the action="" will cause the form to post to the same page it is on */
echo '<form method="post" action="">
Username: <input type="text" name="user_name" />
Password: <input type="password" name="user_pass">
Password again: <input type="password" name="user_pass_check">
E-mail: <input type="email" name="user_email">
<input type="submit" value="Add category" />
</form>';
}
else
{
/* so, the form has been posted, we'll process the data in three steps:
1. Check the data
2. Let the user refill the wrong fields (if necessary)
3. Save the data
*/
$errors = array(); /* declare the array for later use */

if(isset($_POST['user_name']))
{
//the user name exists
if(!ctype_alnum($_POST['user_name']))
{
$errors[] = 'The username can only contain letters and digits.';
}
if(strlen($_POST['user_name']) > 30)
{
$errors[] = 'The username cannot be longer than 30 characters.';
}
}
else
{
$errors[] = 'The username field must not be empty.';
}


if(isset($_POST['user_pass']))
{
if($_POST['user_pass'] != $_POST['user_pass_check'])
{
$errors[] = 'The two passwords did not match.';
}
}
else
{
$errors[] = 'The password field cannot be empty.';
}

if(!empty($errors)) /*check for an empty array, if there are errors, they're in this array (note the ! operator)*/
{
echo 'Uh-oh.. a couple of fields are not filled in correctly..';
echo '<ul>';
foreach($errors as $key => $value) /* walk through the array so all the errors get displayed */
{
echo '<li>' . $value . '</li>'; /* this generates a nice error list */
}
echo '</ul>';
}
else
{
//the form has been posted without, so save it
//notice the use of mysql_real_escape_string, keep everything safe!
//also notice the sha1 function which hashes the password
$sql = "INSERT INTO
users(user_name, user_pass, user_email ,user_date, user_level)
VALUES('" . mysql_real_escape_string($_POST['user_name']) . "',
'" . sha1($_POST['user_pass']) . "',
'" . mysql_real_escape_string($_POST['user_email']) . "',
NOW(),
0)";

$result = mysql_query($sql);
if(!$result)
{
//something went wrong, display the error
echo 'Something went wrong while registering. Please try again later.';
//echo mysql_error(); //debugging purposes, uncomment when needed
}
else
{
echo 'Successfully registered. You can now <a href="signin.php">sign in</a> and start posting! :-)';
}
}
}

include 'footer.php';
?>

我不知道它在说什么。请给我另一种方法来做到这一点!

最佳答案

您不能将 PHP 粘贴到 phpMyAdmin 中,phpMyAdmin 只能使用 SQL。

您可以在 phpMyAdmin 下使用硬编码数据测试 SQL,例如:

INSERT INTO
users(user_name, user_pass, user_email ,user_date, user_level)
VALUES('admin',
sha1('password'),
'admin@example.com',
NOW(),
0);

如果您添加一个 echo 语句来显示 $sql 变量的内容,您可以获取该值并将其粘贴到 phpMyAdmin 中。

此外,不要使用 mysql 扩展 - 它在 PHP 5.x 中已弃用并从 PHP 7 中删除。改用 mysqli 或 PDO。

关于我不明白的 phpmyAdmin 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37715893/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com