所以我正在做一些关于使用 php 创建在线表单的自学。
在我的第一页上,我有以下内容:
<!doctype html>
<html>
<head>
<title> Hi </title>
</head>
<body>
<form method="POST" action="Page2.php">
Username: <input type="text" name="username" >
Password: <input type="text" name="password" >
<input type="submit" name="submit" value="submit">
</body>
</html>
在我的第二页(Page2.php):
<?php
if($_POST["submit"] == "submit")
{
$username=$_POST["username"];
$password=$_POST["password"];
$db = mysql_connect("localhost","root","root");
if(!$db) die("Error connecting to MySQL database.");
mysql_select_db("testdatabase" ,$db);
$sql="INSERT INTO testdatabase_table ('username', 'password') VALUES (". PrepSQL($username) . "," . PrepSQL($password) . ")";
$query=mysql_query($sql);
echo $query;
if(!$query)
{
echo "Failed".mysql_error();
}
exit();
}
function PrepSQL($value)
{
// Stripslashes
if(get_magic_quotes_gpc())
{
$value = stripslashes($value);
}
// Quote
$value = "'" . mysql_real_escape_string($value) . "'";
return($value);
}
?>
这是我得到的错误:FailedYou have an error in your SQL syntax; 检查与您的 MySQL 服务器版本相对应的手册,以在第 1 行的 ''username', 'password') VALUES (' ', ' ')' 附近使用正确的语法
任何快速的建议将不胜感激,谢谢。