gpt4 book ai didi

php - 数据库和PHP未连接到phpMyAdmin(基本代码)

转载 作者:行者123 更新时间:2023-11-29 13:09:03 25 4
gpt4 key购买 nike

index.html:

<!DOCTYPE html>
<html lang="en">
<head>

<body>

<form id="myform" action="userinfo.php" method="post" >

Name: <input type="test" name="name" autofocus>

Age: <input type="text" name="age" >
<button id="sub"> save</button>

</form>

<span id="result"></span>

<script src="script/jquery-1.8.1.min.js" type="text/javascript"></script>
<script src="script/my_script.js" type="text/javascript"></script>
</body>
</html>
<小时/>

my_script.js:

$("#sub").click( function() {
$.post( $("#myform").attr("action"),
$("#myform :input").serializeArray(),
function(info){ $("#result").html(info);
});
clearInput();
});

$("#myform").submit( function() {
return false;
});

function clearInput() {
$("#myform :input").each( function() {
$(this).val('');
});
<小时/>

db.php:

<?php

$conn = mysql_connect('localhost','B00556019','73eKESV3') ;
$db = mysql_select_db('b00556019');

?>
<小时/>

用户信息.php:

<?php

include_once('db.php');

$name = $_POST['name'];
$age = $_POST['age'];

if(mysql_query("INSERT INTO user (name, age) VALUES (
'$name','$age')";))
echo "Successful";
else
echo "insertion failed";

?>
<小时/>

它不会发布到数据库

数据库名称:b00556019
表:用户
字段:名称(varchar,15)。年龄(INT,3)

除了用户信息页面显示为空白之外,什么也没有发生。

如果有人对如何发布到数据库有一些建议,那就太好了,如果有人有一个简单的教程,因为这是一个基本教程,但仍然不起作用。

最佳答案

旁注:就目前情况而言,您对 SQL injection 持开放态度。

请考虑改用 mysqli_* 函数以及准备好的语句或 PDO。 mysql_* 函数已弃用,并将从 future 的 PHP 版本中删除。

而不是:

if(mysql_query("INSERT INTO user (name, age) VALUES (
'$name','$age')";))
echo "Successful";
else
echo "insertion failed";

用途:

$name = mysql_real_escape_string($_POST['name']);
$age = mysql_real_escape_string($_POST['age']);

$result = mysql_query("INSERT INTO user (name, age) VALUES ('$name','$age')");
if(!mysql_query($result)){
echo "Insertion was not successful.";
} else {
echo "Insertion was successful.";
}

您可能还需要传递数据库连接:

if(!mysql_query($result,$conn))
<小时/>

准备语句方法:

$conn = new mysqli("xxx", "xxx", "xxx", "xxx");

/* check connection */
if (mysqli_connect_errno()) {
printf("Connect failed: %s\n", mysqli_connect_error());
exit();
}

$name = $_POST['name'];
$age = $_POST['age'];

$result = $conn->prepare("INSERT INTO user (name, age) VALUES (?,?)");
$result->bind_param("ss", $name, $age);
$result->execute();
$result->close();

// If there is any error with your SQL statement an
// error is thrown and displayed to the user:
printf("Prepared Statement Error: %s\n", $conn->error);

关于php - 数据库和PHP未连接到phpMyAdmin(基本代码),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22331907/

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