gpt4 book ai didi

php - 用输入框更新MySQL -- PHP MYSQL HTML

转载 作者:行者123 更新时间:2023-11-30 23:52:34 25 4
gpt4 key购买 nike

<分区>

我需要我的输入框能够从数据库中读取当前值,但也能够更改该值。

当我在此输入框中输入一些内容(例如 1000)时,它会正常显示。我的 PHP 帖子结果如下:

数据已更新 col1 供应 col2 col3 1000 col4 servicereq 2 owneremail test2 piemail test2 id1 466

因此 col3 的值 = 1000,但它不会输入到 mysql 数据库中。但是对于 mysql 中的下拉菜单(serreqid、owneremail、piemail)更新很好。

输入框是如何生成的:

<form  action='insert.php' method='post'>    
<input type='text' name=col3 id=col3 value='$col3' size='11' onblur='this.form.submit()'>

Mysql更新:

$col1=$_POST['$col1'];
$col2=$_POST['$col2'];
$col3=$_POST['$col3'];
$col4=$_POST['$col4'];
$serreqid = $_POST['servicereq'];
$owneremail = $_POST['owneremail'];
$piemail = $_POST['piemail'];
$id1 = $_POST['id1'];

$sql = "UPDATE reportlog SET service_quantity = ('$col3'),
service_request_id = ('$serreqid'), owner_email = ('$owneremail'),
pi_email = ('$piemail') WHERE id = ('$id1')";

if(!mysqli_query($con, $sql))
{
echo "not updated ";
}else{
echo "Data updated ";
}

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