gpt4 book ai didi

php - mysql插入查询不工作

转载 作者:行者123 更新时间:2023-11-29 04:52:22 25 4
gpt4 key购买 nike

我在数据库中有一个表 disease,其中包含 diiddiseasenamedescrption 列称为hcp

我只想从 HTML 表单中输入;到目前为止,这是我的代码。

<html><head><title>Disease Inssert</title></head>
<body>
<form action="diseaselist.php" method="post">
Disease Name : <input type="text" name="txtDiseaseName" id="textbox" /><br />
Description : <input type="text" name="txtDiseaseDescription" id="textbox" /><br />
<input type="submit" name="btnDiseaseSubmit" id="button"/>

</form>
</body>
</html>

<?php
mysql_connect("localhost","root","");
mysql_select_db("hcp");

if($_REQUEST['btnDiseaseSubmit'])
{
$queryDiseaseInsert="INSERT INTO disease (`diseasename` ,`description`) VALUES ('".$_REQUEST['txtDiseaseName']."', '".$_REQUEST['txtDiseaseDescription']."');";

$resultDI=mysql_query($queryDiseaseInsert) or die(mysql_error());
}
?>

提交后,页面重定向到diseaselist.php,但数据没有保存在数据库中。

有人能看出我的查询有什么问题吗?

最佳答案

表单正在直接提交列表<form action="diseaselist.php" method="post">
.永远不会执行保存到数据库的代码。

您可以创建一个中间页面,比方说 process.php包含添加到数据库的代码:

<?php
mysql_connect("localhost","root","");
mysql_select_db("hcp");

if($_REQUEST['btnDiseaseSubmit'])
{
$queryDiseaseInsert="INSERT INTO disease (`diseasename` ,`description`) VALUES ('". mysql_real_escape_string($_REQUEST['txtDiseaseName'])."', '".mysql_real_escape_string($_REQUEST['txtDiseaseDescription'])."');";

$resultDI=mysql_query($queryDiseaseInsert) or die(mysql_error());
// insert is complete, redirect to list
header("location: diseaselist.php");
} else {
// the form was not submitted
// redirect back to the form or show error message
}

?>

变化:

  • 添加了 mysql_real_escape_string
  • 插入后,发送header指令将浏览器重定向到列表

现在,在您当前的文件中,只保留 html 代码并更新 action属性将表单提交到 process.php脚本:

<html><head><title>Disease Inssert</title></head>
<body>
<form action="process.php" method="post">
Disease Name : <input type="text" name="txtDiseaseName" id="textbox" /><br />
Description : <input type="text" name="txtDiseaseDescription" id="textbox" /><br />
<input type="submit" name="btnDiseaseSubmit" id="button"/>

</form>
</body>
</html>

变化:

  • 更新了表格action属性为 process.php

关于php - mysql插入查询不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10292658/

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