gpt4 book ai didi

php - 无法使用php向mysql表中插入数据

转载 作者:行者123 更新时间:2023-11-29 14:23:27 25 4
gpt4 key购买 nike

这是我几年前做的一个小 php 程序(当时它有效......)当我最近尝试将其合并到我的新“网站”时,我的表中没有插入任何数据......

(当我运行它时,我没有收到任何错误消息)

如果有人能告诉我出了什么问题,我会很高兴。谢谢!

<小时/>
// data,from a form on another page, that I want to insert in my db

$nom = $_POST['nom'];
$prenom = $_POST['prenom'];
$date = $_POST['date'];
$identifiant = $_POST['identifiant'];
$password = $_POST['password'];


// connexion to my database
$connexion = mysql_connect("mysql5.000webh.com","a888888_user","mypassword");
mysql_select_db("a888888_mydatabase",$connexion);

// creation and sending of SQL query
$requete = "insert into panel values
('','$nom','$prenom','$date','$identifiant','$password')";
mysql_query($requete);

echo "Vos donnees ont ete envoyees !";
include('page.html');

// closing Mysql connexion
mysql_close();
<小时/>

最佳答案

而不是直接执行查询,

mysql_query($requete);

使用变量来获取查询结果,例如使用变量,

$result = mysql_query($requete);

现在只需使用 if 语句即可简单检查查询是否已执行,然后使用 mysql_error() 函数查看错误。

if ( !$result ) {
die( mysql_error() );
}

关于php - 无法使用php向mysql表中插入数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11405530/

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