通过从PHP和SQL加载的Form进行MySQLi更新记录.数据库不会更新 [英] MySQLi Update Record via Form loaded from PHP and SQL. Database wont update

查看:55
本文介绍了通过从PHP和SQL加载的Form进行MySQLi更新记录.数据库不会更新的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要创建一个下拉框,该框从数据库中收集记录以填充下拉列表.当选择的值之一,一个形式是将被显示,载有选择的值的数据.

I am required to create a drop down box which gathers the records from a database to populate the drop down. When one of the values is selected, a form is to be displayed which contains the data relating to the value selected.

该表单不仅具有显示所选数据的功能,而且还具有在填写并提交后更新数据库中的记录的功能.

The form is to have the function of showing the selected data, but also to update the record in the database when filled out and Submit.

我已经创建了一个php文件来尝试完成此操作,但是我遇到了诸如未定义索引和未知列之类的错误.

I have created a php file to try and accomplish this, but Im getting errors such as undefined index and unknown column.

我只是PHP的新手,所以这对我来说是一项艰巨的任务.有人可以看一下我的代码并通知我是否有任何错误.

I am only new to PHP so this is a big task for me. Could someone have a look at my code and inform me if there are any errors.

我一直在尝试从网上到这里将代码拼凑在一起,但是要使其全部正常工作是很棘手的.

Ive been trying to piece code together here and there from the net but its been tricky trying to get it all to work.

经过一些调整后,我现在没有任何错误,但是记录不会更新.我收到记录更新成功"消息,但记录未更新.

I am not getting any errors now after some tweaking, but the record wont update. I get a 'record updated successfully' message but the record isn't updated.

我很确定缺少记录更新的原因是无法通过$q=$row["BearId"]正确收集ID,但是如果使用$q=$_GET["q"],我什么也不会出错.我并不完全肯定这是问题所在,这就是为什么我在这里问这个问题.

I am pretty sure the lack of a record update is coming down to the ID not getting collected properly via the $q=$row["BearId"] but if I use $q=$_GET["q"] I get nothing but errors. I am not completely positive this is the problem though, that is why Im asking the question here.

如果您能提供任何帮助,我将不胜感激.我到目前为止已经掌握了这件事,但我无法获取它来更新记录.

I would appreciate any help that you can give. Ive gotten so far with this thing and yet I cant get it to update the record.

我已将问题精确定位到其中的ID

I have pinpointed the problem down to the id in

$sql = "UPDATE //snip WHERE BearId = '$q'";

$q=$row["BearId"];

如果我手动将BearId更改为等于'1',则记录将更新.

If I manually change BearId to equal '1' then the record is updated.

updatebears.php

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Update Bears</title>
<script>
function showUser(str)
{
if (str=="")
{
    document.getElementById("result").innerHTML="";
    return;
} 
if (window.XMLHttpRequest)
{
    xmlhttp=new XMLHttpRequest();
}
else
{
    xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
    if (xmlhttp.readyState==4 && xmlhttp.status==200)
    {
        document.getElementById("result").innerHTML=xmlhttp.responseText;
    }
}
xmlhttp.open("GET","getvalues.php?q="+str,true);
xmlhttp.send();
}
</script>
<style>
// style elements
</style>
</head>
<body>
<h1>Update Bears</h1>
Select a Bear:
<br />
<select name="bears" onchange="showUser(this.value)">
<option value="">Select a BearId</option>
<?php
    $query = "SELECT * FROM bears";
    $mysqli = new mysqli('localhost','User','123','bears');
    $result = $mysqli->query($query);
    while($row = $result->fetch_assoc())
    echo '<option value="'.$row["BearId"].'">'.$row["BearId"].'</option>';
?>
</select>
<br />
<?php
$q=$row["BearId"];
$mysqli = new mysqli('localhost','User','123','bears');
$sql = "SELECT * FROM bears WHERE BearId='".$q."'";
if(array_key_exists('_submit_check', $_POST))
{
    $weight = $_POST['Weight'];
    $sex = $_POST['Sex'];
    $type = $_POST['Type'];
    $colour = $_POST['Colour'];
    $breed = $_POST['BreedId'];
    $sql = "UPDATE bears SET Weight = '$weight', Sex = '$sex', Type = '$type', Colour = '$colour', Breed = '$breed' WHERE BearId = '$q'";
    if($mysqli->query($sql) === TRUE)
    {
        echo 'Record updated successfully<br />';
    }
        else
    {
        echo $sql.'<br />' . $mysqli->error;
    }
    $mysqli->close();
}
?>
<br />
<div id="result"></div>
<br />
<a href="insertbear.php" class="Task2">Click here to Visit Task 2 (Insert Bears)</a> |     <a href="displaybears.php" class="Task3">Click here to Visit Task 3 (Display Bears)</a>
</body>
</html>

getvalues.php

<?php
$q=$_GET["q"];
$mysqli = new mysqli('localhost','User','123','bears');
$sql = "SELECT * FROM bears WHERE BearId='".$q."'";
if($stmt = $mysqli->prepare($sql))
{
    $stmt->execute();
    $stmt->bind_result($BearId, $Weight, $Sex, $Type, $Colour, $Breed);
    while ($stmt->fetch())
    {
        echo "<form method='post' name='form1' onsubmit='return validateForm()' action='updatebears.php'>";
        echo "<p>";
        echo "<label for='BreedId'>BreedId:</label>";
        echo "<br />";
        echo "<select id='BreedId' name='BreedId' />";
        echo "<option value='".$Breed."'>".$Breed."</option>";
        echo "<option value='1'>1. Polar</option>";
        echo "<option value='2'>2. Brown</option>";
        echo "<option value='3'>3. Panda</option>";
        echo "</select>";
        echo "</p>";
        echo "<p>";
        echo "<label for='Weight'>Weight(kg):</label>";
        echo "<br />";
        echo "<input type='text' id='Weight' name='Weight' value='".$Weight."' />";
        echo "</label>";
        echo "</p>";
        echo "<p>";
        echo "Sex: ";
        echo "<br />";
        echo "<label for='M'>Male</label><input type='radio' id='M' value='M' name='Sex'";
        if($Sex=='M') echo "checked";
        echo "/>";
        echo "<label for='F'>Female</label><input type='radio' id='F' value='F' name='Sex'";
        if($Sex=='F') echo "checked";
        echo "/>";
        echo "</p>";
        echo "<p>";
        echo "<label for='Type'>Type:</label> ";
        echo "<br />";
        echo "<input type='text' id='Type' name='Type' maxlength='100' value='".$Type."' />";
        echo "</p>";
        echo "<p>";
        echo "<label for='Colour'>Colour:</label>";
        echo "<br />";
        echo "<input type='text' id='Colour' name='Colour' maxlength='20' value='".$Colour."' />";
        echo "</p>";
        echo "<p>";
        echo "<input type='submit' value='Submit' />";
        echo "<input type='reset' value='Reset' />";
        echo "<input type='hidden' name='_submit_check' value=1 />";
        echo "</p>";
        echo "</form>";
        }
    }
    else
    {
        echo 'Unable to connect';
        exit();
    }
?>

感谢您的帮助.

推荐答案

我相信您需要做的是在getvalues.php文件中为BearId创建一个隐藏的输入类型.这样,当您的表单执行发布时,您可以从发布中获取BearId,而不是尝试从$ row ['BearId']中获取它.我相当确定$ row ['BearId']与用户第一次进入getvalues.php表单时选择的$ row ['BearId']不同.您是否尝试过将$ row ['BearId']打印到html上以验证其合法值?

I believe what you need to do is create a hidden input type for the BearId within the getvalues.php file. That way when your form performs the post you can get the BearId from the post as opposed to trying to get it from the $row['BearId']. I'm fairly certain $row['BearId'] is not the same $row['BearId'] that the user selected when he first goes to the getvalues.php form. Have you tried printing $row['BearId'] to html to verify it's a legitimate value?

    if(array_key_exists('_submit_check', $_POST))
    {
    $id = $_POST['BearId']
    $weight = $_POST['Weight'];
    $sex = $_POST['Sex'];
    $type = $_POST['Type'];
    $colour = $_POST['Colour'];
    $breed = $_POST['BreedId'];
    $sql = "UPDATE bears SET Weight = '$weight', Sex = '$sex', Type = '$type', Colour = '$colour', Breed = '$breed' WHERE BearId = '$id'";
    if($mysqli->query($sql) === TRUE)
    {
        echo 'Record updated successfully<br />';
    }
        else
    {
        echo $sql.'<br />' . $mysqli->error;
    }
    $mysqli->close();
    }
    ?>


<h1>getvalues.php</h1>
    <?php
    $q=$_GET["q"];
    $mysqli = new mysqli('localhost','User','123','bears');
    $sql = "SELECT * FROM bears WHERE BearId='".$q."'";
    if($stmt = $mysqli->prepare($sql))
    {
        $stmt->execute();
        $stmt->bind_result($BearId, $Weight, $Sex, $Type, $Colour, $Breed);
        while ($stmt->fetch())
        {
            echo "<form method='post' name='form1' onsubmit='return validateForm()' action='updatebears.php'>";
            echo <input type="hidden" name="BearId" value='".$q."'>
            echo "<p>";
            echo "<label for='BreedId'>BreedId:</label>";
            echo "<br />";
            echo "<select id='BreedId' name='BreedId' />";
            echo "<option value='".$Breed."'>".$Breed."</option>";
            echo "<option value='1'>1. Polar</option>";
            echo "<option value='2'>2. Brown</option>";
            echo "<option value='3'>3. Panda</option>";
            echo "</select>";
            echo "</p>";
            echo "<p>";
            echo "<label for='Weight'>Weight(kg):</label>";
            echo "<br />";
            echo "<input type='text' id='Weight' name='Weight' value='".$Weight."' />";
            echo "</label>";
            echo "</p>";
            echo "<p>";
            echo "Sex: ";
            echo "<br />";
            echo "<label for='M'>Male</label><input type='radio' id='M' value='M' name='Sex'";
            if($Sex=='M') echo "checked";
            echo "/>";
            echo "<label for='F'>Female</label><input type='radio' id='F' value='F' name='Sex'";
            if($Sex=='F') echo "checked";
            echo "/>";
            echo "</p>";
            echo "<p>";
            echo "<label for='Type'>Type:</label> ";
            echo "<br />";
            echo "<input type='text' id='Type' name='Type' maxlength='100' value='".$Type."' />";
            echo "</p>";
            echo "<p>";
            echo "<label for='Colour'>Colour:</label>";
            echo "<br />";
            echo "<input type='text' id='Colour' name='Colour' maxlength='20' value='".$Colour."' />";
            echo "</p>";
            echo "<p>";
            echo "<input type='submit' value='Submit' />";
            echo "<input type='reset' value='Reset' />";
            echo "<input type='hidden' name='_submit_check' value=1 />";
            echo "</p>";
            echo "</form>";
            }
        }
        else
        {
            echo 'Unable to connect';
            exit();
        }

这篇关于通过从PHP和SQL加载的Form进行MySQLi更新记录.数据库不会更新的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆