我目前正在尝试将wordpress网页中的表单中的数据输入到mysql数据库中。
这是wordpress上html页面的代码
<form action="<?php echo $_SERVER[PHP_SELF] ?>" method="post">
Firstname: <input type="text" name="firstname" />
Lastname: <input type="text" name="lastname" />
Age: <input type="text" name="age" />
<input type="submit" />
</form>
<?php
$con = mysql_connect("localhost","root","");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("test", $con);
$sql="INSERT INTO Persons (FirstName, LastName, Age)
VALUES
('$_POST[firstname]','$_POST[lastname]','$_POST[age]')";
if (!mysql_query($sql,$con))
{
die('Error: ' . mysql_error());
}
echo "1 record added";
mysql_close($con);
?>
我已经安装了phpexec插件,但似乎运行正常。
当我在表单中输入数据并提交时,它不会出现在数据库中。
我的主键似乎是自动增加,告诉我发生了一些事情,但没有数据出现。
提前致谢
答案 0 :(得分:0)
根据上述评论,我会得到一本好书并确保您正在学习如何正确安全地使用MySQL和PHP。见Learning PHP and MySQL - O'Reilly Media