gpt4 book ai didi

php - MYSQL使用php和html形式插入数据库

转载 作者:行者123 更新时间:2023-11-29 17:00:45 25 4
gpt4 key购买 nike

我正在尝试使用 php 和 html 表单插入 MYSQL 数据库。当我按下提交时,它说项目已成功插入,但是当我登录 phpmyadmin 时,表是空的?

我的 html 表单代码是 creon.html

<form name="bmr_calc" action="https://cs1.ucc.ie/~lmm12/Project/creon.php" method="POST" id="BMRform">
<h1 id="info">Creon Calculator</h1>
<table>
<tr>
<td colspan="2" align="center">I take one: <br>
<input type="radio" name="creon1" value="10" required> Creon 10,000
<input type="radio" name="creon1" value="25" required> Creon 25,000
<br>per <input type="text" name="creon3" required>g of fat
</td>
</tr>
<br>
<tr>
<td>There are:</td>
<td><input type="text" name="creon4" required>g of fat in the item I'm about to eat</td>
</tr>
</table>
<td><input type="submit" value="Submit" style="float:center">
<br>
<img src="img/regpic.jpg" alt="reg" id="reg">
<br>
</td>
</form>

我的 php 代码是 creon.php,它保存在我的大学服务器上;

<?php

$creon1 = $_POST['creon1'];
$creon3 = $_POST['creon3'];
$creon4 = $_POST['creon4'];

if (!empty($creon1) || !empty($creon3) || !empty($creon4)) {
$host = "cs1.ucc.ie";
$dbUsername = "lmm12";
$dbPassword = "----";
$dbname = "mscim2018_lmm12";
//create connection
$conn = new mysqli($host, $dbUsername, $dbPassword, $dbname);
if (mysqli_connect_error()) {
die('Connect Error('. mysqli_connect_errno().')'. mysqli_connect_error());
} else {
$INSERT = "INSERT Into creon (creon1, creon3, creon4) values(?, ?, ?)";
//Prepare statement

$stmt = $conn->prepare($INSERT);
$stmt->bind_param("sss", $creon1, $creon3, $creon4);
$stmt->execute();
echo "New record inserted sucessfully";

$stmt->close();
$conn->close();
}
} else {
echo "All field are required";
die();
}

最佳答案

这似乎是 MySQL 中的类型问题或 PHP 代码中的类型问题

可以肯定的是,请从表 creon 上传您的数据类型,即字段 varchars、文本等。

请注意 bind_param 周围的 if/else 语句,您也需要这样做,以防万一出现问题,并在语句中将 INTO 大写。

我运行了以下命令:

<?php
$creon1 = $_POST['creon1'];
$creon3 = $_POST['creon3'];
$creon4 = $_POST['creon4'];


if (!empty($creon1) || !empty($creon3) || !empty($creon4)) {

$host = "localhost";
$dbUsername = "root";
$dbPassword = "";
$dbname = "quick";
//create connection
$conn = new mysqli($host, $dbUsername, $dbPassword, $dbname);
if (mysqli_connect_error()) {
die('Connect Error('. mysqli_connect_errno().')'. mysqli_connect_error());
} else {
$test = "INSERT INTO testing (creon1, creon3, creon4) values(?, ?, ?)";
//Prepare statement

$stmt = $conn->prepare($test);
if ($stmt != false)
$stmt->bind_param("sss", $creon1, $creon3, $creon4);
else
print("Returns false");
$stmt->execute();
echo "New record inserted sucessfully";

$stmt->close();
$conn->close();
}
} else {
echo "All field are required";
die();
}
?>

提交表单后它给了我这个结果:

Picture of result

在我的数据库中插入了行:

Inserted row

关于php - MYSQL使用php和html形式插入数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52280186/

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