gpt4 book ai didi

php - mysql查询和php

转载 作者:行者123 更新时间:2023-11-30 01:12:36 26 4
gpt4 key购买 nike

我有一个 config.php 文件,其中包含连接信息和一个应将用户数据发送到数据库的 php 脚本。没有解析错误,但数据库在表中始终显示 0 个条目。有什么建议吗?

配置文件:

<?php

mysql_connect("mysql15.000webhost.com","a******94_admin","*********");
mysql_select_db("a******94_members");

?>

表单脚本:

<?php

require('scripts/config.php');

if(isset($_POST['submit'])) {

$u_name = ($_POST['u_name']);
$email = ($_POST['email']);
$password = ($_POST['password']);

mysql_query("INSERT INTO `members` (`id`, `u_name`, `email`, `password`) VALUES (NULL, '$u_name', '$email', '$password')");

} else {


} //end of first if/else statement

?>

最佳答案

也许不是“使用”并更新到 MySQLi

关于php - mysql查询和php,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19351439/

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